]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify Lisp warning about elements following other expressions
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 9 Nov 2020 15:50:45 +0000 (16:50 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 9 Nov 2020 15:50:51 +0000 (16:50 +0100)
* lisp/emacs-lisp/lisp-mode.el (lisp-fdefs): Clarify warning in
help text (bug#44482).

lisp/emacs-lisp/lisp-mode.el

index daf49670894eaac19004fbc485f06151e4b19ab7..cc40af7a41c08d93f7c9044411634a928e76f04c 100644 (file)
@@ -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.")))