emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emulation/viper-macs.el


From: Michael Kifer
Subject: [Emacs-diffs] Changes to emacs/lisp/emulation/viper-macs.el
Date: Mon, 07 Jan 2002 23:36:05 -0500

Index: emacs/lisp/emulation/viper-macs.el
diff -c emacs/lisp/emulation/viper-macs.el:1.25 
emacs/lisp/emulation/viper-macs.el:1.26
*** emacs/lisp/emulation/viper-macs.el:1.25     Sun Sep  9 18:33:38 2001
--- emacs/lisp/emulation/viper-macs.el  Mon Jan  7 23:36:00 2002
***************
*** 1,8 ****
  ;;; viper-macs.el --- functions implementing keyboard macros for Viper
  
! ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
  
! ;; Author: Michael Kifer <address@hidden>
  
  ;; This file is part of GNU Emacs.
  
--- 1,8 ----
  ;;; viper-macs.el --- functions implementing keyboard macros for Viper
  
! ;; Copyright (C) 1994, 95, 96, 97, 2000, 01, 02 Free Software Foundation, Inc.
  
! ;; Author: Michael Kifer <address@hidden>
  
  ;; This file is part of GNU Emacs.
  
***************
*** 855,884 ****
          (error "Wrong type macro component, symbol-or-listp, %S" elt)
        macro)))
    
- (defun viper-char-array-p (array)
-   (eval (cons 'and (mapcar 'viper-characterp array))))
-   
  (defun viper-macro-to-events (macro-body)
    (vconcat (mapcar 'viper-key-to-emacs-key macro-body)))
            
-                        
- ;; check if vec is a vector of character symbols
- (defun viper-char-symbol-sequence-p (vec)
-   (and
-    (sequencep vec)
-    (eval
-     (cons 'and
-         (mapcar (lambda (elt)
-                   (and (symbolp elt) (= (length (symbol-name elt)) 1)))
-                 vec)))))
               
- 
- ;; Check if vec is a vector of key-press events representing characters
- ;; XEmacs only
- (defun viper-event-vector-p (vec)
-   (and (vectorp vec)
-        (eval (cons 'and (mapcar '(lambda (elt) (if (eventp elt) t)) vec)))))
-     
  
  ;;; Reading fast key sequences
      
--- 855,864 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]