diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-06-06 20:31:10 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-06-06 20:31:10 +0000 |
commit | e87085e6d5606b545ac0ee6039fe15f32ac7ee1c (patch) | |
tree | 31012d7738ff627aedd185c7e5f740387f59a926 /lisp/longlines.el | |
parent | 742764a75fd5b34d1e03b763ada3b1bf68b14bd1 (diff) | |
download | emacs-e87085e6d5606b545ac0ee6039fe15f32ac7ee1c.tar.gz |
(longlines-re-search-forward): New function.
(longlines-mode): Bind replace-search-function and
replace-re-search-function, to ensure that replacement commands
treat newlines as spaces.
Diffstat (limited to 'lisp/longlines.el')
-rw-r--r-- | lisp/longlines.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/longlines.el b/lisp/longlines.el index d160b808a7c..a4dda4b4ec3 100644 --- a/lisp/longlines.el +++ b/lisp/longlines.el @@ -119,6 +119,10 @@ are indicated with a symbol." (make-local-variable 'longlines-auto-wrap) (set (make-local-variable 'isearch-search-fun-function) 'longlines-search-function) + (set (make-local-variable 'replace-search-function) + 'longlines-search-forward) + (set (make-local-variable 'replace-re-search-function) + 'longlines-re-search-forward) (add-to-list 'buffer-substring-filters 'longlines-encode-string) (when longlines-wrap-follows-window-size (let ((dw (if (and (integerp longlines-wrap-follows-window-size) @@ -191,6 +195,8 @@ are indicated with a symbol." (when longlines-wrap-follows-window-size (kill-local-variable 'fill-column)) (kill-local-variable 'isearch-search-fun-function) + (kill-local-variable 'replace-search-function) + (kill-local-variable 'replace-re-search-function) (kill-local-variable 'require-final-newline) (kill-local-variable 'buffer-substring-filters) (kill-local-variable 'use-hard-newlines))) @@ -465,6 +471,10 @@ This is called by `window-configuration-change-hook'." (let ((search-spaces-regexp "[ \n]+")) (re-search-backward (regexp-quote string) bound noerror count))) +(defun longlines-re-search-forward (string &optional bound noerror count) + (let ((search-spaces-regexp "[ \n]")) + (re-search-forward string bound noerror count))) + ;; Loading and saving (defun longlines-before-revert-hook () |