aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-11-16 01:35:55 +0000
committerJim Blandy <[email protected]>1992-11-16 01:35:55 +0000
commit7d70f8c44e30408853f27b61204d438baaa15380 (patch)
tree48c36ab11e8c122cab810c6e16d6e97c790b11f7 /lisp
parentb8ec3aa307ef2d4e35d134523cdc49295953a10b (diff)
* bytecomp.el: Declare unread-command-char an obsolete variable.
* vip.el (vip-escape-to-emacs, vip-prefix-arg-value, vip-prefix-arg-com): Use unread-command-event instead of unread-command-char; respect its new semantics. * gnus.el (gnus-Subject-next-article): Same.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 0c4d94df5a..c472ed0421 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -2287,7 +2287,7 @@ If argument UNREAD is non-nil, only unread article is selected."
(let ((char (read-char)))
(if (= char cmd)
(gnus-Subject-next-group nil)
- (setq unread-command-char char))))
+ (setq unread-command-event char))))
)
))
)))