aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorMichael Kifer2006-09-18 19:22:31 +0000
committerMichael Kifer2006-09-18 19:22:31 +0000
commitf573c8b0357cf6d8563db405ead5c5a9f37d492b (patch)
tree583643ce7e6fe031ab8a68c1c3abae691b6029f6 /lisp/emulation
parent2b1119a0fd2c772e1f6b1e549fc1ee78aafb6ed4 (diff)
downloademacs-f573c8b0357cf6d8563db405ead5c5a9f37d492b.tar.gz
emacs-f573c8b0357cf6d8563db405ead5c5a9f37d492b.zip
* viper.el: Bumped up version/date of update to reflect the substantial
changes done in August 2006. * viper-cmd (viper-next-line-at-bol): make sure button-at, push-button are defined. * ediff-util.el (ediff-add-to-history): new function. * ediff.el: use ediff-add-to-history instead of add-to-history.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/viper-cmd.el2
-rw-r--r--lisp/emulation/viper.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
index 1685b829f64..61d99e6c78d 100644
--- a/lisp/emulation/viper-cmd.el
+++ b/lisp/emulation/viper-cmd.el
@@ -3098,7 +3098,7 @@ If point is on a widget or a button, simulate clicking on that widget/button."
3098 (and (consp widget) 3098 (and (consp widget)
3099 (get (widget-type widget) 'widget-type)))) 3099 (get (widget-type widget) 'widget-type))))
3100 (widget-button-press (point)) 3100 (widget-button-press (point))
3101 (if (button-at (point)) 3101 (if (and (fboundp 'button-at) (fboundp 'push-button) (button-at (point)))
3102 (push-button) 3102 (push-button)
3103 ;; not a widget or a button 3103 ;; not a widget or a button
3104 (viper-leave-region-active) 3104 (viper-leave-region-active)
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index 0ba7bdd041a..ea70ad609ad 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -9,7 +9,7 @@
9;; Author: Michael Kifer <kifer@cs.stonybrook.edu> 9;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
10;; Keywords: emulations 10;; Keywords: emulations
11 11
12(defconst viper-version "3.12 of February 18, 2006" 12(defconst viper-version "3.13 of September 18, 2006"
13 "The current version of Viper") 13 "The current version of Viper")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.