Merge pull request #797 from wavexx/origin/master
mu4e: escape % in queries when updating the mode-string
This commit is contained in:
@ -998,7 +998,9 @@ the query history stack."
|
|||||||
global-mode-string
|
global-mode-string
|
||||||
'(:eval
|
'(:eval
|
||||||
(concat
|
(concat
|
||||||
(propertize mu4e~headers-last-query 'face 'mu4e-modeline-face)
|
(propertize
|
||||||
|
(replace-regexp-in-string "%" "%%" mu4e~headers-last-query t t)
|
||||||
|
'face 'mu4e-modeline-face)
|
||||||
" "
|
" "
|
||||||
(mu4e-context-label)))))
|
(mu4e-context-label)))))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user