emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cdlatex 00abc77f49 2/3: Fix bug with automatic help pop-up


From: ELPA Syncer
Subject: [nongnu] elpa/cdlatex 00abc77f49 2/3: Fix bug with automatic help pop-up
Date: Wed, 23 Aug 2023 03:59:05 -0400 (EDT)

branch: elpa/cdlatex
commit 00abc77f49e340a7a20a1a2ea16912d1a0fbdfaa
Author: Carsten Dominik <carsten.dominik@gmail.com>
Commit: Carsten Dominik <carsten.dominik@gmail.com>

    Fix bug with automatic help pop-up
    
    The formatting was botched when skipping a help field by inserting a
    carriage retun or newline into the list of characters
---
 cdlatex.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cdlatex.el b/cdlatex.el
index fdc8383f7e..27162e89d6 100644
--- a/cdlatex.el
+++ b/cdlatex.el
@@ -1457,7 +1457,7 @@ zZ
       (cond
        ( (= this-char ?\?)
          (setq value "SCROLL"))
-       ( (= this-char ?\C-m)
+       ( (member this-char '(?\C-j ?\C-m))
          (setq this-char ?\ )
          (setq value ""))
        ( t



reply via email to

[Prev in Thread] Current Thread [Next in Thread]