From 7d70f8c44e30408853f27b61204d438baaa15380 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 16 Nov 1992 01:35:55 +0000 Subject: [PATCH] * 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. --- lisp/gnus.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus.el b/lisp/gnus.el index 0c4d94df5aa..c472ed04216 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)))) ) )) )))