Changeset 3892 for vendor/emacs-CVS_HEAD/lisp/emulation/viper-util.el
- Timestamp:
- 10/02/05 07:23:38 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/lisp/emulation/viper-util.el
r3806 r3892 1406 1406 (or within-line "\n") 1407 1407 (if within-line (viper-line-pos 'end))))) 1408 1408 1409 (defsubst viper-skip-all-separators-backward (&optional within-line) 1409 1410 (if (eq viper-syntax-preference 'strict-vi) … … 1434 1435 viper-non-word-characters 1435 1436 (viper-line-pos 'end)))) 1437 1436 1438 (defun viper-skip-nonalphasep-backward () 1437 1439 (if (eq viper-syntax-preference 'strict-vi) … … 1503 1505 )) 1504 1506 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 1505 1513 1506 1514 ;; this is copied from cl-extra.el
