From 443012f070db50bf36a172c7f5b908a402b6fc6e Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 27 Nov 2006 13:57:16 +0000 Subject: [PATCH] (longlines-wrap-line): "?\ " -> "?\s". --- lisp/longlines.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/longlines.el b/lisp/longlines.el index ee469e1be09..af81793ce85 100644 --- a/lisp/longlines.el +++ b/lisp/longlines.el @@ -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)) -- 2.39.2