diff options
Diffstat (limited to 'src')
| -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 | ||