]> git.eshelyaron.com Git - emacs.git/commitdiff
(Man-fontify-manpage, Man-cleanup-manpage):
authorRichard M. Stallman <rms@gnu.org>
Fri, 24 Nov 1995 22:19:32 +0000 (22:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 24 Nov 1995 22:19:32 +0000 (22:19 +0000)
Convert \255 to a dash.

lisp/man.el

index 174a72455ec19f460d03e431dc384e7340eb5951..4a3afd45d73e989d143d1f826e7624159f4c569f 100644 (file)
@@ -624,6 +624,9 @@ Same for the ANSI bold and normal escape sequences."
   (while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t)
     (replace-match "+")
     (put-text-property (1- (point)) (point) 'face 'bold))
+  ;; \255 is some kind of dash in Latin-1.
+  (goto-char (point-min))
+  (while (search-forward "\255" nil t) (replace-match "-"))
   (message "%s man page made up" Man-arguments))
 
 (defun Man-cleanup-manpage ()
@@ -647,6 +650,9 @@ Same for the ANSI bold and normal escape sequences."
        ))
   (goto-char (point-min))
   (while (re-search-forward "[-|]\\(\b[-|]\\)+" nil t) (replace-match "+"))
+  ;; \255 is some kind of dash in Latin-1.
+  (goto-char (point-min))
+  (while (search-forward "\255" nil t) (replace-match "-"))
   (message "%s man page cleaned up" Man-arguments))
 
 (defun Man-bgproc-sentinel (process msg)