Show
Ignore:
Timestamp:
11/26/05 08:33:26 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/lisp/emulation/viper-util.el

    r3892 r3988  
    12431243;; Characters that should not be considered as part of the word, in reformed-vi 
    12441244;; 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. 
    12451249(defconst viper-non-word-characters-reformed-vi 
    1246   "!@#$%^&*()-+=|\\~`{}[];:'\",<.>/?") 
     1250  "!@#$%^&*()\\-+=|\\~`{}[];:'\",<.>/?") 
    12471251;; These are characters that are not to be considered as parts of a word in 
    12481252;; Viper.