diff options
| author | Richard M. Stallman | 2013-05-05 10:10:51 -0400 |
|---|---|---|
| committer | Richard M. Stallman | 2013-05-05 10:10:51 -0400 |
| commit | 6c54491c95e3bdc1f447cba478b60b711393b406 (patch) | |
| tree | c81bb6b7ea4e3e702a7f13511491fa79480fed58 | |
| parent | df8f35df4a8c2556a46ed66abf9b05a932f25a66 (diff) | |
| download | emacs-6c54491c95e3bdc1f447cba478b60b711393b406.tar.gz emacs-6c54491c95e3bdc1f447cba478b60b711393b406.zip | |
* vc/compare-w.el (compare-windows-whitespace):
Treat no-break space as whitespace.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc/compare-w.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4ff2c7951de..ee90a05473a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-05-05 Richard Stallman <rms@gnu.org> | 1 | 2013-05-05 Richard Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * vc/compare-w.el (compare-windows-whitespace): | ||
| 4 | Treat no-break space as whitespace. | ||
| 5 | |||
| 3 | * mail/rmailsum.el (rmail-summary-rmail-update): | 6 | * mail/rmailsum.el (rmail-summary-rmail-update): |
| 4 | Detect empty summary and don't change selected message. | 7 | Detect empty summary and don't change selected message. |
| 5 | (rmail-summary-goto-msg): Likewise. | 8 | (rmail-summary-goto-msg): Likewise. |
diff --git a/lisp/vc/compare-w.el b/lisp/vc/compare-w.el index fa451ccbe20..3c40f989fb3 100644 --- a/lisp/vc/compare-w.el +++ b/lisp/vc/compare-w.el | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | :prefix "compare-" | 35 | :prefix "compare-" |
| 36 | :group 'tools) | 36 | :group 'tools) |
| 37 | 37 | ||
| 38 | (defcustom compare-windows-whitespace "\\(\\s-\\|\n\\)+" | 38 | (defcustom compare-windows-whitespace "\\(\\s-\\|\n\\|\240\\)+" |
| 39 | "Regexp or function that defines whitespace sequences for `compare-windows'. | 39 | "Regexp or function that defines whitespace sequences for `compare-windows'. |
| 40 | That command optionally ignores changes in whitespace. | 40 | That command optionally ignores changes in whitespace. |
| 41 | 41 | ||