diff options
author | Colin Walters <walters@gnu.org> | 2002-05-09 21:29:20 +0000 |
---|---|---|
committer | Colin Walters <walters@gnu.org> | 2002-05-09 21:29:20 +0000 |
commit | c33cdcc5ef2a39b13864e6e3b7a66d440f98f19b (patch) | |
tree | 658563eb1c44177aa5d10ba9a957da9374b3b531 /lisp/ibuf-ext.el | |
parent | b64a9d93c27ad082073c3079d83949ca7ef8dbc6 (diff) | |
download | emacs-c33cdcc5ef2a39b13864e6e3b7a66d440f98f19b.tar.gz |
(ibuffer-do-occur): Default to 0 context lines.
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r-- | lisp/ibuf-ext.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 7acb7f585f6..c077e3362ee 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -1406,7 +1406,7 @@ defaults to one." (interactive (occur-read-primary-args)) (if (or (not (integerp nlines)) (< nlines 0)) - (setq nlines 1)) + (setq nlines 0)) (when (zerop (ibuffer-count-marked-lines)) (ibuffer-set-mark ibuffer-marked-char)) (let ((ibuffer-do-occur-bufs nil)) |