emacs-diffs
[Top][All Lists]
Advanced

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

master a8de2e20e0 2/2: Remove kerning escapes in woman mode


From: Lars Ingebrigtsen
Subject: master a8de2e20e0 2/2: Remove kerning escapes in woman mode
Date: Sat, 5 Feb 2022 01:51:58 -0500 (EST)

branch: master
commit a8de2e20e093bb45231327e824ceb8421993634e
Author: Brendan O'Dea <bod@debian.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Remove kerning escapes in woman mode
    
    * lisp/woman.el (woman-decode-region): Remove kerning escapes
    (bug#53770).
    
    Copyright-paperwork-exempt: yes
---
 lisp/woman.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/woman.el b/lisp/woman.el
index 2e0d9a9090..e16785329a 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -2280,9 +2280,9 @@ Currently set only from \\='\\\" t in the first line of 
the source file.")
       (replace-match woman-unpadded-space-string t t))
 
     ;; Discard optional hyphen \%; concealed newlines \<newline>;
-    ;; point-size change function \sN,\s+N, \s-N:
+    ;; kerning \/, \,; point-size change function \sN,\s+N, \s-N:
     (goto-char from)
-    (while (re-search-forward "\\\\\\([%\n]\\|s[-+]?[0-9]+\\)" nil t)
+    (while (re-search-forward "\\\\\\([%\n/,]\\|s[-+]?[0-9]+\\)" nil t)
       (woman-delete-match 0))
 
     ;; BEWARE: THIS SHOULD PROBABLY ALL BE DONE MUCH LATER!!!!!



reply via email to

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