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 | |
parent | 5717642238605b017fea75981bc7db556c6acec9 (diff) | |
download | emacs-2b058c727ef14a3fe205c99c0b5191820b285480.tar.gz |
(whitespace-cleanup-internal): Use current
argument for recursive call.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/whitespace.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 990c3c39ca3..86d6f6acfd6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-12-04 Dan Nicolaescu <dann@ics.uci.edu> + + * whitespace.el (whitespace-cleanup-internal): Use current + argument for recursive call. + 2006-12-04 Michael Albinus <michael.albinus@gmx.de> * net/tramp.el (tramp-methods): Add "ControlPath" and 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 |