aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kifer2005-11-15 18:44:30 +0000
committerMichael Kifer2005-11-15 18:44:30 +0000
commit54b171c787f722dec1fb965fd46b6fc0c70c168a (patch)
treed7891798e815e67b17bcd4e87385c532e56b0361
parentef2cb23f1cde02ddc56e7b224db0139b515154f6 (diff)
downloademacs-54b171c787f722dec1fb965fd46b6fc0c70c168a.tar.gz
emacs-54b171c787f722dec1fb965fd46b6fc0c70c168a.zip
2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
* viper-utils (viper-non-word-characters-reformed-vi): quote `-' in string. * viper.el (viper-emacs-state-mode-list): Ensure that rcirc-mode buffers come up in Emacs state.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/emulation/viper-util.el6
-rw-r--r--lisp/emulation/viper.el2
3 files changed, 15 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 185bfdacab6..99ec4d32b9a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
2
3 * viper-utils (viper-non-word-characters-reformed-vi): quote `-' in
4 string.
5
6 * viper.el (viper-emacs-state-mode-list): Ensure that
7 rcirc-mode buffers come up in Emacs state.
8
12005-11-15 Dan Nicolaescu <dann@ics.uci.edu> 92005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2 10
3 * term.el (term-termcap-format): Fix typos. 11 * term.el (term-termcap-format): Fix typos.
diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el
index d0b9b34e4d6..def90669885 100644
--- a/lisp/emulation/viper-util.el
+++ b/lisp/emulation/viper-util.el
@@ -1242,8 +1242,12 @@ the `Local variables' section of a file."
1242 1242
1243;; Characters that should not be considered as part of the word, in reformed-vi 1243;; Characters that should not be considered as part of the word, in reformed-vi
1244;; syntax mode. 1244;; syntax mode.
1245;; Note: \\ (quoted \) must appear before `-' because this string is listified
1246;; into characters at some point and then put back to string. The result is
1247;; used in skip-chars-forward, which treats - specially. Here we achieve the
1248;; effect of quoting - and preventing it from being special.
1245(defconst viper-non-word-characters-reformed-vi 1249(defconst viper-non-word-characters-reformed-vi
1246 "!@#$%^&*()-+=|\\~`{}[];:'\",<.>/?") 1250 "!@#$%^&*()\\-+=|\\~`{}[];:'\",<.>/?")
1247;; These are characters that are not to be considered as parts of a word in 1251;; These are characters that are not to be considered as parts of a word in
1248;; Viper. 1252;; Viper.
1249;; Set each time state changes and at loading time 1253;; Set each time state changes and at loading time
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index 71b9347b8b0..7bcaf8be399 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -440,6 +440,8 @@ widget."
440 Buffer-menu-mode 440 Buffer-menu-mode
441 compilation-mode 441 compilation-mode
442 442
443 rcirc-mode
444
443 view-mode 445 view-mode
444 vm-mode 446 vm-mode
445 vm-summary-mode) 447 vm-summary-mode)