1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

(scheme-mode-syntax-table): Use prefix syntax for ', `, comma, @ and #.

This commit is contained in:
Richard M. Stallman 2003-04-24 01:41:45 +00:00
parent 592060ab2f
commit 0a08535e77
2 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,11 @@
2003-04-23 Richard M. Stallman <rms@gnu.org>
* progmodes/scheme.el (scheme-mode-syntax-table):
Use prefix syntax for ', `, comma, @ and #.
* emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
Give @ prefix syntax.
2003-04-23 Andre Spiegel <spiegel@gnu.org>
* vc-cvs.el (vc-cvs-stay-local): Keep the old default. Simplify
@ -252,8 +260,7 @@
strings broken over lines.
(fortran-fill): Handle long strings that must be broken.
2003-04-13 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
From Michael Albinus <Michael.Albinus@alcatel.de>.
2003-04-13 Michael Albinus <Michael.Albinus@alcatel.de> (tiny change)
* net/ange-ftp.el (ange-ftp-expand-symlink): If result of
expansion is a symlink, expand again.

View File

@ -96,13 +96,13 @@
(modify-syntax-entry ?\) ")( " st)
(modify-syntax-entry ?\; "< " st)
(modify-syntax-entry ?\" "\" " st)
(modify-syntax-entry ?' " p" st)
(modify-syntax-entry ?` " p" st)
(modify-syntax-entry ?' "' " st)
(modify-syntax-entry ?` "' " st)
;; Special characters
(modify-syntax-entry ?, "_ p" st)
(modify-syntax-entry ?@ "_ p" st)
(modify-syntax-entry ?# "_ p14" st)
(modify-syntax-entry ?, "' " st)
(modify-syntax-entry ?@ "' " st)
(modify-syntax-entry ?# "' 14" st)
(modify-syntax-entry ?\\ "\\ " st)
st))