]> git.eshelyaron.com Git - emacs.git/commitdiff
(longlines-wrap-line): "?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:57:16 +0000 (13:57 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:57:16 +0000 (13:57 +0000)
lisp/longlines.el

index ee469e1be0937c4ecff755bfc5b8024c25c270e9..af81793ce858f3dc6141e9e39700abedfaaf49ea 100644 (file)
@@ -258,7 +258,7 @@ not need to be wrapped, move point to the next line and return t."
                     (if (> longlines-wrap-point (point))
                         (setq longlines-wrap-point
                               (1- longlines-wrap-point))))
-                (insert-before-markers-and-inherit ?\ )
+                (insert-before-markers-and-inherit ?\s)
                 (backward-char 1)
                 (delete-char -1)
                 (forward-char 1))