]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct kboard): New elts Vreal_last_command and Vlast_prefix_arg.
authorRichard M. Stallman <rms@gnu.org>
Sun, 7 Jun 1998 22:38:17 +0000 (22:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 7 Jun 1998 22:38:17 +0000 (22:38 +0000)
src/keyboard.h

index 6d6f4d4c095a030e36a3f763388e20a8c5b1872e..0874af8f0a82a8e569d2c2ec9bfe33127ef49cc9 100644 (file)
@@ -78,9 +78,16 @@ struct kboard
        commands that set the prefix argument.  */
     Lisp_Object Vlast_command;
 
+    /* Normally same as last-command, but never modified by
+       other commands.  */
+    Lisp_Object Vreal_last_command;
+
     /* The prefix argument for the next command, in raw form.  */
     Lisp_Object Vprefix_arg;
 
+    /* Saved prefix argument for the last command, in raw form.  */
+    Lisp_Object Vlast_prefix_arg;
+
     /* Unread events specific to this kboard.  */
     Lisp_Object kbd_queue;