diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2006-12-04 07:34:01 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2006-12-04 07:34:01 +0000 |
commit | 2b058c727ef14a3fe205c99c0b5191820b285480 (patch) | |
tree | c02c80878e155c7f39968be24d87d1ebd44b67d8 /lisp/whitespace.el | |
parent | 5717642238605b017fea75981bc7db556c6acec9 (diff) | |
download | emacs-2b058c727ef14a3fe205c99c0b5191820b285480.tar.gz |
(whitespace-cleanup-internal): Use current
argument for recursive call.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r-- | lisp/whitespace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index cdb743c1494..74943da4413 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -571,7 +571,7 @@ See `whitespace-buffer' docstring for a summary of the problems." ;; Call this recursively till everything is taken care of (if whitespace-any - (whitespace-cleanup-internal) + (whitespace-cleanup-internal region-only) ;; if we are done, talk to the user (progn (unless whitespace-silent |