From: Karl Heuer Date: Fri, 9 Jun 1995 03:04:26 +0000 (+0000) Subject: (struct kboard): New member Vlast_command. X-Git-Tag: emacs-19.34~3698 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=334a398c80450ac43b2d553d6e408ba3fb32429d;p=emacs.git (struct kboard): New member Vlast_command. --- diff --git a/src/keyboard.h b/src/keyboard.h index 8b55b0ac878..1498880b84e 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -66,6 +66,10 @@ struct kboard { KBOARD *next_kboard; + /* Last command executed by the editor command loop, not counting + commands that set the prefix argument. */ + Lisp_Object Vlast_command; + /* The prefix argument for the next command, in raw form. */ Lisp_Object Vprefix_arg;