mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
(emacs-lisp-mode-syntax-table): Treat non-break space as whitespace in Lisp.
This commit is contained in:
parent
adef3de740
commit
ea2e3ef4a3
3 changed files with 9 additions and 0 deletions
2
etc/NEWS
2
etc/NEWS
|
|
@ -165,6 +165,8 @@ supported on other platforms, but not on Windows due to using the winsock
|
||||||
|
|
||||||
* Lisp Changes in Emacs 23.1
|
* 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".
|
** In `condition-case', a handler can specify "let the debugger run first".
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* vc.el (vc-dired-hook): Use inhibit-read-only.
|
* vc.el (vc-dired-hook): Use inhibit-read-only.
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,8 @@
|
||||||
(modify-syntax-entry i "_ " table)
|
(modify-syntax-entry i "_ " table)
|
||||||
(setq i (1+ i)))
|
(setq i (1+ i)))
|
||||||
(modify-syntax-entry ?\s " " table)
|
(modify-syntax-entry ?\s " " table)
|
||||||
|
;; Non-break space acts as whitespace.
|
||||||
|
(modify-syntax-entry ?\x8a0 " " table)
|
||||||
(modify-syntax-entry ?\t " " table)
|
(modify-syntax-entry ?\t " " table)
|
||||||
(modify-syntax-entry ?\f " " table)
|
(modify-syntax-entry ?\f " " table)
|
||||||
(modify-syntax-entry ?\n "> " table)
|
(modify-syntax-entry ?\n "> " table)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue