]> git.eshelyaron.com Git - emacs.git/commitdiff
2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
authorMichael Kifer <kifer@cs.stonybrook.edu>
Tue, 15 Nov 2005 18:44:30 +0000 (18:44 +0000)
committerMichael Kifer <kifer@cs.stonybrook.edu>
Tue, 15 Nov 2005 18:44:30 +0000 (18:44 +0000)
* 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.

lisp/ChangeLog
lisp/emulation/viper-util.el
lisp/emulation/viper.el

index 185bfdacab6e941d32532988e204f08985f6a385..99ec4d32b9ad73c99907fbea7b69c8745cf2718d 100644 (file)
@@ -1,3 +1,11 @@
+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.
+
 2005-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * term.el (term-termcap-format): Fix typos.
index d0b9b34e4d6532b451f063f6a62d6c600614460e..def90669885a69df16218768afced629d27c250a 100644 (file)
@@ -1242,8 +1242,12 @@ the `Local variables' section of a file."
 
 ;; Characters that should not be considered as part of the word, in reformed-vi
 ;; syntax mode.
+;; Note: \\ (quoted \) must appear before `-' because this string is listified
+;; into characters at some point and then put back to string. The result is
+;; used in skip-chars-forward, which treats - specially. Here we achieve the
+;; effect of quoting - and preventing it from being special.
 (defconst viper-non-word-characters-reformed-vi
-  "!@#$%^&*()-+=|\\~`{}[];:'\",<.>/?")
+  "!@#$%^&*()\\-+=|\\~`{}[];:'\",<.>/?")
 ;; These are characters that are not to be considered as parts of a word in
 ;; Viper.
 ;; Set each time state changes and at loading time
index 71b9347b8b0cfa73ae4eba7cd7c93e13aea1b75a..7bcaf8be3992bc5b9739351ac84a03452106cde0 100644 (file)
@@ -440,6 +440,8 @@ widget."
     Buffer-menu-mode
     compilation-mode
 
+    rcirc-mode
+
     view-mode
     vm-mode
     vm-summary-mode)