aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1990-10-09 02:52:33 +0000
committerRichard M. Stallman1990-10-09 02:52:33 +0000
commit8c59783a6a56fe7a9d330d3ce7f5019f4cf8a6ec (patch)
tree62f1817f72ade4119b21cbdcb606a0578b7ab5fd
parentb70021f430514d779a4d0cd9577a4425683ad524 (diff)
downloademacs-8c59783a6a56fe7a9d330d3ce7f5019f4cf8a6ec.tar.gz
emacs-8c59783a6a56fe7a9d330d3ce7f5019f4cf8a6ec.zip
*** empty log message ***
-rw-r--r--lisp/man.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/man.el b/lisp/man.el
index b04a59155a2..10ee68a9589 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -119,6 +119,9 @@ where SECTION is the desired section of the manual, as in `tty(4)'."
119 (cond ((= preceding following) 119 (cond ((= preceding following)
120 ;; x\bx 120 ;; x\bx
121 (delete-char -2)) 121 (delete-char -2))
122 ((and (= preceding ?o) (= following ?\+))
123 ;; o\b+
124 (delete-char -2))
122 ((= preceding ?\_) 125 ((= preceding ?\_)
123 ;; _\b 126 ;; _\b
124 (delete-char -2)) 127 (delete-char -2))