aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-24 01:41:45 +0000
committerRichard M. Stallman2003-04-24 01:41:45 +0000
commit0a08535e77e9f615370bfdcffc85de5a79d57202 (patch)
treecd9961f56dab2ca4161a4cde8ac298ca7bfe3578
parent592060ab2fe0b93145664c3ad1fd4cdb4b00af18 (diff)
downloademacs-0a08535e77e9f615370bfdcffc85de5a79d57202.tar.gz
emacs-0a08535e77e9f615370bfdcffc85de5a79d57202.zip
(scheme-mode-syntax-table): Use prefix syntax for ', `, comma, @ and #.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/progmodes/scheme.el10
2 files changed, 14 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 55030147fb3..94e15aa25b8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12003-04-23 Richard M. Stallman <rms@gnu.org>
2
3 * progmodes/scheme.el (scheme-mode-syntax-table):
4 Use prefix syntax for ', `, comma, @ and #.
5
6 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
7 Give @ prefix syntax.
8
12003-04-23 Andre Spiegel <spiegel@gnu.org> 92003-04-23 Andre Spiegel <spiegel@gnu.org>
2 10
3 * vc-cvs.el (vc-cvs-stay-local): Keep the old default. Simplify 11 * vc-cvs.el (vc-cvs-stay-local): Keep the old default. Simplify
@@ -252,8 +260,7 @@
252 strings broken over lines. 260 strings broken over lines.
253 (fortran-fill): Handle long strings that must be broken. 261 (fortran-fill): Handle long strings that must be broken.
254 262
2552003-04-13 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> 2632003-04-13 Michael Albinus <Michael.Albinus@alcatel.de> (tiny change)
256 From Michael Albinus <Michael.Albinus@alcatel.de>.
257 264
258 * net/ange-ftp.el (ange-ftp-expand-symlink): If result of 265 * net/ange-ftp.el (ange-ftp-expand-symlink): If result of
259 expansion is a symlink, expand again. 266 expansion is a symlink, expand again.
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el
index 9824f5c3e6c..588bab138e8 100644
--- a/lisp/progmodes/scheme.el
+++ b/lisp/progmodes/scheme.el
@@ -96,13 +96,13 @@
96 (modify-syntax-entry ?\) ")( " st) 96 (modify-syntax-entry ?\) ")( " st)
97 (modify-syntax-entry ?\; "< " st) 97 (modify-syntax-entry ?\; "< " st)
98 (modify-syntax-entry ?\" "\" " st) 98 (modify-syntax-entry ?\" "\" " st)
99 (modify-syntax-entry ?' " p" st) 99 (modify-syntax-entry ?' "' " st)
100 (modify-syntax-entry ?` " p" st) 100 (modify-syntax-entry ?` "' " st)
101 101
102 ;; Special characters 102 ;; Special characters
103 (modify-syntax-entry ?, "_ p" st) 103 (modify-syntax-entry ?, "' " st)
104 (modify-syntax-entry ?@ "_ p" st) 104 (modify-syntax-entry ?@ "' " st)
105 (modify-syntax-entry ?# "_ p14" st) 105 (modify-syntax-entry ?# "' 14" st)
106 (modify-syntax-entry ?\\ "\\ " st) 106 (modify-syntax-entry ?\\ "\\ " st)
107 st)) 107 st))
108 108