From: Richard M. Stallman Date: Thu, 5 May 1994 04:44:24 +0000 (+0000) Subject: (last_point_position_buffer): Declared. X-Git-Tag: emacs-19.34~8522 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f5f20968f47bb3f1bd4f339974cbc92a1a056bb;p=emacs.git (last_point_position_buffer): Declared. --- diff --git a/src/commands.h b/src/commands.h index a33b52db0c0..788f1f9c047 100644 --- a/src/commands.h +++ b/src/commands.h @@ -70,9 +70,12 @@ extern Lisp_Object unread_switch_frame; /* Previous command symbol found here for comparison */ extern Lisp_Object last_command; -/* Previous value of point */ +/* The value of point when the last command was executed. */ extern int last_point_position; +/* The buffer that was current when the last command was started. */ +extern Lisp_Object last_point_position_buffer; + /* Nonzero means ^G can quit instantly */ extern int immediate_quit;