1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-26 07:29:17 +02:00

Merge pull request #1584 from hpdeifel/m-q-quoting

mu4e: Fix quoting in M-q keybinding definition
This commit is contained in:
Dirk-Jan C. Binnema 2020-02-22 14:08:57 +02:00 committed by GitHub
commit e1f797cd1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -861,7 +861,7 @@ FUNC should be a function taking two arguments:
(define-key map (kbd "M-q")
(lambda()
(interactive)
(if 'mu4e-view-use-gnus
(if mu4e-view-use-gnus
(article-fill-long-lines)
(mu4e-view-fill-long-lines))))