summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-11-09 16:50:45 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2020-11-09 16:50:51 +0100
commit391260e46c2d8cd716c951b41933448fc51614f5 (patch)
tree6c1becc066e4d15c8af669962be89b4f2816ae5b /lisp/emacs-lisp
parent3de31e7b71353bc35d994dc924fae5178f09130b (diff)
downloademacs-391260e46c2d8cd716c951b41933448fc51614f5.tar.gz
emacs-391260e46c2d8cd716c951b41933448fc51614f5.tar.bz2
emacs-391260e46c2d8cd716c951b41933448fc51614f5.zip
Clarify Lisp warning about elements following other expressions
* lisp/emacs-lisp/lisp-mode.el (lisp-fdefs): Clarify warning in help text (bug#44482).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index daf49670894..cc40af7a41c 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -481,7 +481,7 @@ This will generate compile-time constants from BINDINGS."
(3 'font-lock-regexp-grouping-construct prepend))
(lisp--match-hidden-arg
(0 '(face font-lock-warning-face
- help-echo "Hidden behind deeper element; move to another line?")
+ help-echo "Easy to misread; consider moving the element to the next line")
prepend))
(lisp--match-confusable-symbol-character
0 '(face font-lock-warning-face
@@ -526,7 +526,7 @@ This will generate compile-time constants from BINDINGS."
(1 font-lock-keyword-face))
(lisp--match-hidden-arg
(0 '(face font-lock-warning-face
- help-echo "Hidden behind deeper element; move to another line?")
+ help-echo "Easy to misread; consider moving the element to the next line")
prepend))
))
"Gaudy level highlighting for Lisp modes.")))