]> git.eshelyaron.com Git - emacs.git/commitdiff
* longlines.el (longlines-search-forward)
authorChong Yidong <cyd@stupidchicken.com>
Sun, 16 Oct 2005 23:46:15 +0000 (23:46 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 16 Oct 2005 23:46:15 +0000 (23:46 +0000)
(longlines-search-backward): Match any number of spaces.

lisp/ChangeLog
lisp/longlines.el

index 5ac616dbe46e3034c9ffe96c2c9790958c423ecc..b448ead1d4799f35c2dca89b3e17df6c30d730db 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-16  Chong Yidong  <cyd@stupidchicken.com>
+
+       * longlines.el (longlines-search-forward)
+       (longlines-search-backward): Match any number of spaces.
+
 2005-10-16  Thien-Thi Nguyen  <ttn@gnu.org>
 
        * diff-mode.el (diff-mode): Doc fix.
index 9665931e04642ef80f3a4c13c648933a57599da4..00a2782d0a38ab96391b6a1221296d8a452cbd5e 100644 (file)
@@ -398,11 +398,11 @@ This is called by `window-size-change-functions'."
       'longlines-search-backward))))
 
 (defun longlines-search-forward (string &optional bound noerror count)
-  (let ((search-spaces-regexp "[ \n]"))
+  (let ((search-spaces-regexp "[ \n]+"))
     (re-search-forward (regexp-quote string) bound noerror count)))
 
 (defun longlines-search-backward (string &optional bound noerror count)
-  (let ((search-spaces-regexp "[ \n]"))
+  (let ((search-spaces-regexp "[ \n]+"))
     (re-search-backward (regexp-quote string) bound noerror count)))
 
 ;; Loading and saving