(emacs-lisp-mode-syntax-table): Treat non-break space as whitespace in Lisp.

This commit is contained in:
Richard M. Stallman 2007-07-30 20:08:56 +00:00
parent adef3de740
commit ea2e3ef4a3
3 changed files with 9 additions and 0 deletions

View file

@ -165,6 +165,8 @@ supported on other platforms, but not on Windows due to using the winsock
* Lisp Changes in Emacs 23.1
** Non-breaking space now acts as whitespace.
+++
** In `condition-case', a handler can specify "let the debugger run first".

View file

@ -1,3 +1,8 @@
2007-07-30 Richard Stallman <rms@gnu.org>
* emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
Treat non-break space as whitespace in Lisp.
2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
* vc.el (vc-dired-hook): Use inhibit-read-only.

View file

@ -56,6 +56,8 @@
(modify-syntax-entry i "_ " table)
(setq i (1+ i)))
(modify-syntax-entry ?\s " " table)
;; Non-break space acts as whitespace.
(modify-syntax-entry ?\x8a0 " " table)
(modify-syntax-entry ?\t " " table)
(modify-syntax-entry ?\f " " table)
(modify-syntax-entry ?\n "> " table)