emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/help.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/help.el
Date: Wed, 08 Mar 2006 10:11:48 +0000

Index: emacs/lisp/help.el
diff -u emacs/lisp/help.el:1.306 emacs/lisp/help.el:1.307
--- emacs/lisp/help.el:1.306    Tue Mar  7 15:53:41 2006
+++ emacs/lisp/help.el  Wed Mar  8 10:11:47 2006
@@ -429,8 +429,9 @@
     (with-current-buffer standard-output
       (goto-char (point-min))
       (while (progn (move-to-column 50) (not (eobp)))
-       (search-forward " " nil t)
-       (insert "\n")))
+        (when (search-forward " " nil t)
+          (delete-char -1))
+        (insert "\n")))
     (print-help-return-message)))
 
 




reply via email to

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