Show
Ignore:
Timestamp:
10/02/05 07:23:38 (3 years ago)
Author:
miyoshi
Message:

Update.

Files:

Legend:

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

    r3806 r3892  
    14061406                       (or within-line "\n") 
    14071407                       (if within-line (viper-line-pos 'end))))) 
     1408 
    14081409(defsubst viper-skip-all-separators-backward (&optional within-line) 
    14091410  (if (eq viper-syntax-preference 'strict-vi) 
     
    14341435     viper-non-word-characters 
    14351436     (viper-line-pos 'end)))) 
     1437 
    14361438(defun viper-skip-nonalphasep-backward () 
    14371439  (if (eq viper-syntax-preference 'strict-vi) 
     
    15031505    )) 
    15041506 
     1507;; tells when point is at the beginning of field 
     1508(defun viper-beginning-of-field () 
     1509  (or (bobp) 
     1510      (not (eq (get-char-property (point) 'field) 
     1511               (get-char-property (1- (point)) 'field))))) 
     1512 
    15051513 
    15061514;; this is copied from cl-extra.el