# HG changeset patch # User Glenn Morris # Date 1231471736 0 # Node ID 0e99f90c434709c4a9947b26e66d6430a87a85f1 # Parent 4b04254322f8afd785aeb9d8ed83b7a9c426630f (last-input-char, last-command-char): Move here from src/keyboard.c. diff -r 4b04254322f8 -r 0e99f90c4347 lisp/ChangeLog --- a/lisp/ChangeLog Fri Jan 09 03:22:30 2009 +0000 +++ b/lisp/ChangeLog Fri Jan 09 03:28:56 2009 +0000 @@ -1,3 +1,8 @@ +2009-01-09 Glenn Morris + + * subr.el (last-input-char, last-command-char): + Move here from src/keyboard.c. + 2009-01-09 Dave Love * calendar/time-date.el: Require cl for `declare'. diff -r 4b04254322f8 -r 0e99f90c4347 lisp/subr.el --- a/lisp/subr.el Fri Jan 09 03:22:30 2009 +0000 +++ b/lisp/subr.el Fri Jan 09 03:28:56 2009 +0000 @@ -1059,6 +1059,16 @@ (make-obsolete-variable 'translation-table-for-input nil "23.1") (defvaralias 'messages-buffer-max-lines 'message-log-max) + +;; These aliases exist in Emacs 19.34, and probably before, but were +;; only marked as obsolete in 23.1. +;; The lisp manual (since at least Emacs 21) descrribes them as +;; existing "for compatibility with Emacs version 18". +(define-obsolete-variable-alias 'last-input-char 'last-input-event + "at least 19.34") +(define-obsolete-variable-alias 'last-command-char 'last-command-event + "at least 19.34") + ;;;; Alternate names for functions - these are not being phased out.