# HG changeset patch # User Richard M. Stallman # Date 780622998 0 # Node ID 7dacd83e0fe0bedf25a3b2e4f88a181317fa000a # Parent a6dbf66b0e940930a790b7f55eeccae33062196d (Qplus): New variable. (syms_of_callint): Set it up. diff -r a6dbf66b0e94 -r 7dacd83e0fe0 src/callint.c --- a/src/callint.c Mon Sep 26 23:42:40 1994 +0000 +++ b/src/callint.c Mon Sep 26 23:43:18 1994 +0000 @@ -28,7 +28,7 @@ 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 @@ Qminus = intern ("-"); staticpro (&Qminus); + Qplus = intern ("+"); + staticpro (&Qplus); + Qcall_interactively = intern ("call-interactively"); staticpro (&Qcall_interactively);