diff options
| author | Richard M. Stallman | 1994-09-26 23:43:18 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-26 23:43:18 +0000 |
| commit | fdb4a38c7d9aa644b65eec3a9635fdda6925fb1c (patch) | |
| tree | c579d29ccd7db3841ddd5a17789e5804ac207c61 | |
| parent | 7beb53fb3ca3a41385e1f8f7a22621db17c3b47f (diff) | |
| download | emacs-fdb4a38c7d9aa644b65eec3a9635fdda6925fb1c.tar.gz emacs-fdb4a38c7d9aa644b65eec3a9635fdda6925fb1c.zip | |
(Qplus): New variable.
(syms_of_callint): Set it up.
| -rw-r--r-- | src/callint.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 7645424c8c4..fa0099bd4d6 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -28,7 +28,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 28 | 28 | ||
| 29 | extern char *index (); | 29 | extern char *index (); |
| 30 | 30 | ||
| 31 | Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus; | 31 | Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus, Qplus; |
| 32 | Lisp_Object Qcall_interactively; | 32 | Lisp_Object Qcall_interactively; |
| 33 | Lisp_Object Vcommand_history; | 33 | Lisp_Object Vcommand_history; |
| 34 | 34 | ||
| @@ -631,6 +631,9 @@ syms_of_callint () | |||
| 631 | Qminus = intern ("-"); | 631 | Qminus = intern ("-"); |
| 632 | staticpro (&Qminus); | 632 | staticpro (&Qminus); |
| 633 | 633 | ||
| 634 | Qplus = intern ("+"); | ||
| 635 | staticpro (&Qplus); | ||
| 636 | |||
| 634 | Qcall_interactively = intern ("call-interactively"); | 637 | Qcall_interactively = intern ("call-interactively"); |
| 635 | staticpro (&Qcall_interactively); | 638 | staticpro (&Qcall_interactively); |
| 636 | 639 | ||