projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7beb53f
)
(Qplus): New variable.
author
Richard M. Stallman
<rms@gnu.org>
Mon, 26 Sep 1994 23:43:18 +0000
(23:43 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 26 Sep 1994 23:43:18 +0000
(23:43 +0000)
(syms_of_callint): Set it up.
src/callint.c
patch
|
blob
|
history
diff --git
a/src/callint.c
b/src/callint.c
index 7645424c8c47fec90d5c516acfd37b9b2adc1620..fa0099bd4d6b9aef1de39960a17e02952eb30d06 100644
(file)
--- a/
src/callint.c
+++ b/
src/callint.c
@@
-28,7
+28,7
@@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
extern char *index ();
-Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus;
+Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus
, Qplus
;
Lisp_Object Qcall_interactively;
Lisp_Object Vcommand_history;
@@
-631,6
+631,9
@@
syms_of_callint ()
Qminus = intern ("-");
staticpro (&Qminus);
+ Qplus = intern ("+");
+ staticpro (&Qplus);
+
Qcall_interactively = intern ("call-interactively");
staticpro (&Qcall_interactively);