head 1.1;A access ; symbols ; locks ; strict; comment @ * @; 1.1 date 85.03.31.18.10.43; author bbanerje; state Exp; branches ; next ; desc @@ 1.1 log @Initial revision @ text @/* Call a Lisp function interactively. Copyright (C) 1985 Richard M. Stallman. This file is part of GNU Emacs. GNU Emacs is distributed in the hope that it will be useful, but without any warranty. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Everyone is granted permission to copy, modify and redistribute GNU Emacs, but only under the conditions described in the document "GNU Emacs copying permission notice". An exact copy of the document is supposed to have been given to you along with GNU Emacs so that you can know how you may redistribute it all. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. */ #include "config.h" #include #undef NULL #include #include "lisp.h" #include "buffer.h" #include "commands.h" extern struct Lisp_Vector *CurrentGlobalMap; Lisp_Object Vprefix_arg, Vcurrent_prefix_arg, Qminus; Lisp_Object Qcall_interactively; Lisp_Object Vcommand_history; extern Lisp_Object ml_apply (); extern Lisp_Object Fread_buffer (), Fread_key_sequence (), Fread_file_name (); DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, 0 /* See auxdoc.c */) (args) Lisp_Object args; { return Qnil; } DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 2, 0, "Call FUNCTION, reading args from the terminal.\n\ if the interactive calling specs of FUNCTION request one.\n\ \n\ The function contains a specification of how to do the argument reading.\n\ In the case of user-defined functions, this is specified by placing a call to\n\ the function interactive at the top level of the function body. See interactive.") (function, record) Lisp_Object function, record; { Lisp_Object *args, *visargs; unsigned char **argstrings; Lisp_Object fun; Lisp_Object funcar; Lisp_Object specs; Lisp_Object teml; Lisp_Object prefix_arg; unsigned char *string; unsigned char *tem; register int i, j; int count, foo; char prompt[100]; char prompt1[100]; struct _iobuf _strbuf; char *tem1; int arg_from_tty = 0; struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; /* Save this now, since use ofminibuffer will clobber it. */ prefix_arg = Vcurrent_prefix_arg; retry: fun = function; while (XTYPE (fun) == Lisp_Symbol && !EQ (fun, Qunbound)) fun = XSYMBOL (fun)->function; if (XTYPE (fun) == Lisp_Subr) { string = (unsigned char *) XSUBR (fun)->prompt; if (!string) wrong_type_argument (Qcommandp, function, 0); else if ((int) string == 1) return Fapply (function, Qnil); } else if (!LISTP (fun)) wrong_type_argument (Qcommandp, function, 0); else if (funcar = Fcar (fun), EQ (funcar, Qautoload)) { GCPRO2 (function, prefix_arg); Fload (Fcar (Fcdr (fun)), Qnil, Qnil); UNGCPRO; goto retry; } else if (EQ (funcar, Qlambda)) { specs = Fassq (Qinteractive, Fcdr (Fcdr (fun))); if (NULL (specs)) wrong_type_argument (Qcommandp, function, 0); specs = Fcar (Fcdr (specs)); if (XTYPE (specs) == Lisp_String) string = XSTRING (specs)->data; else { if (!NULL (record)) Vcommand_history = Fcons (Fcons (function, Qnil), Vcommand_history); return Fapply (function, Feval (specs)); } } else if (EQ (funcar, Qmocklisp)) return ml_apply (fun, Qinteractive); else wrong_type_argument (Qcommandp, function, 0); /* Here if function specifies a string to control parsing the defaults */ tem = string; for (j = 0; *tem; j++) { if (*tem == 'r') j++; tem = (unsigned char *) index (tem, '\n'); if (tem) tem++; else tem = (unsigned char *) ""; } count = j; args = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); visargs = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); argstrings = (unsigned char **) alloca ((count + 1) * sizeof (char *)); for (i = 0; i < (count + 1); i++) args[i] = Qnil; GCPRO4 (prefix_arg, function, *args, *visargs); gcpro3.nvars = (count + 1); gcpro4.nvars = (count + 1); tem = string; for (i = 1; *tem; i++) { strncpy (prompt1, tem + 1, sizeof prompt1 - 1); prompt1[sizeof prompt1 - 1] = 0; tem1 = index (prompt1, '\n'); if (tem1) *tem1 = 0; for (j = 1; j < i; j++) argstrings[j] = XSTRING (visargs[j])->data; _strbuf._flag = _IOSTRG; _strbuf._ptr = prompt; _strbuf._cnt = sizeof prompt; _doprnt (prompt1, argstrings + 1, &_strbuf); putc('\0', &_strbuf); visargs[i] = Qnil; switch (*tem) { case 'a': /* Symbol defined as a function */ visargs[i] = Fcompleting_read (build_string (prompt), Vobarray, Qfboundp, Qt, Qnil); /* Passing args[i] directly stimulates compiler bug */ teml = visargs[i]; args[i] = Fintern (teml, Qnil); arg_from_tty = 1; break; case 'b': /* Name of existing buffer */ args[i] = Fread_buffer (build_string (prompt), Fcurrent_buffer (), Qt); arg_from_tty = 1; break; case 'B': /* Name of buffer, possibly nonexistent */ args[i] = Fread_buffer (build_string (prompt), Fother_buffer (Fcurrent_buffer ()), Qnil); arg_from_tty = 1; break; case 'c': /* Character */ message ("%s", prompt); args[i] = Fread_char (); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; visargs[i] = Fint_to_string (teml); arg_from_tty = 1; break; case 'C': /* Command: symbol with interactive function */ visargs[i] = Fcompleting_read (build_string (prompt), Vobarray, Qcommandp, Qt, Qnil); /* Passing args[i] directly stimulates compiler bug */ teml = visargs[i]; args[i] = Fintern (teml, Qnil); arg_from_tty = 1; break; case 'd': /* Value of dot. Does not do I/O. */ XFASTINT (args[i]) = dot; XFASTINT (visargs[i]) = (int) "dot"; break; case 'D': /* Directory name. */ args[i] = Fread_file_name (build_string (prompt), Qnil, bf_cur->directory, Qlambda); arg_from_tty = 1; break; case 'f': /* Existing file name. */ args[i] = Fread_file_name (build_string (prompt), Qnil, Qnil, Qlambda); arg_from_tty = 1; break; case 'F': /* Possibly nonexistent file name. */ args[i] = Fread_file_name (build_string (prompt), Qnil, Qnil, Qnil); arg_from_tty = 1; break; case 'k': /* Key sequence (string) */ args[i] = Fread_key_sequence (build_string (prompt)); teml = args[i]; visargs[i] = Fkey_description (teml); arg_from_tty = 1; break; case 'm': /* Value of mark. Does not do I/O. */ if (NULL (bf_cur->mark)) error ("The mark is not set now"); XFASTINT (visargs[i]) = (int) "the mark"; XFASTINT (args[i]) = marker_position (bf_cur->mark); break; case 'n': /* Number read using minibuffer. */ args[i] = read_minibuf_string (MinibufLocalMap, Qnil, build_string (prompt)); visargs[i] = args[i]; XFASTINT (args[i]) = 0; teml = visargs[i]; XINT (args[i]) = atoi (teml); arg_from_tty = 1; break; case 'P': /* Prefix arg in raw form. Does no I/O. */ args[i] = prefix_arg; XFASTINT (visargs[i]) = (int) ""; break; case 'p': /* Prefix arg converted to number. No I/O. */ args[i] = Fprefix_numeric_value (prefix_arg); XFASTINT (visargs[i]) = (int) ""; break; case 'r': /* Region, dot and mark as 2 args. */ if (NULL (bf_cur->mark)) error ("The mark is not set now"); foo = marker_position (bf_cur->mark); XFASTINT (visargs[i]) = (int) "dot"; XFASTINT (args[i]) = dot < foo ? dot : foo; XFASTINT (visargs[++i]) = (int) "the mark"; XFASTINT (args[i]) = dot > foo ? dot : foo; break; case 's': /* String read via minibuffer. */ args[i] = read_minibuf_string (MinibufLocalMap, Qnil, build_string (prompt)); arg_from_tty = 1; break; case 'S': /* Any symbol. */ visargs[i] = read_minibuf_string (MinibufLocalNSMap, Qnil, build_string (prompt)); /* Passing args[i] directly stimulates compiler bug */ teml = visargs[i]; args[i] = Fintern (teml, Qnil); arg_from_tty = 1; break; case 'v': /* Variable name: symbol that is boundp. */ visargs[i] = Fcompleting_read (build_string (prompt), Vobarray, Qboundp, Qt, Qnil); /* Passing args[i] directly stimulates compiler bug */ teml = visargs[i]; args[i] = Fintern (teml, Qnil); arg_from_tty = 1; break; case 'x': /* Lisp expression read but not evaluated */ args[i] = Fread_minibuffer (build_string (prompt)); visargs[i] = last_minibuf_string; arg_from_tty = 1; break; case 'X': /* Lisp expression read and evaluated */ args[i] = Feval_minibuffer (build_string (prompt)); visargs[i] = last_minibuf_string; arg_from_tty = 1; break; default: error ("Invalid control letter in interactive calling string"); } if (NULL (visargs[i])) visargs[i] = args[i]; tem = (unsigned char *) index (tem, '\n'); if (tem) tem++; else tem = (unsigned char *) ""; } UNGCPRO; args[0] = function; if (arg_from_tty || !NULL (record)) Vcommand_history = Fcons (Flist (count + 1, args), Vcommand_history); return Ffuncall (count + 1, args); } DEFUN ("prefix-numeric-value", Fprefix_numeric_value, Sprefix_numeric_value, 1, 1, 0, "Return numeric meaning of raw prefix argument.\n\ A raw prefix argument is what you get from (interactive \"P\").") (raw) Lisp_Object raw; { Lisp_Object val; if (NULL (raw)) XFASTINT (val) = 1; else if (XTYPE (raw) == Lisp_Symbol) XFASTINT (val) = 0, XINT (val) = -1; else if (LISTP (raw)) val = XCONS (raw)->car; else if (XTYPE (raw) == Lisp_Int) val = raw; else XFASTINT (val) = 1; return val; } syms_of_callint () { Qminus = intern ("-"); staticpro (&Qminus); Qcall_interactively = intern ("call-interactively"); staticpro (&Qcall_interactively); DefLispVar ("prefix-arg", &Vprefix_arg, "The value of the prefix argument for the next editing command.\n\ It may be a number, or the symbol - for just a minus sign as arg,\n\ or a list whose car is a number for just one or more C-U's\n\ or nil if no argument has been specified.\n\ \n\ You cannot examine this variable to find the argument for this command\n\ since it has been set to nil by the time you can look.\n\ Normally, commands get the prefix argument with (interactive \"p\")."); DefLispVar ("current-prefix-arg", &Vcurrent_prefix_arg, "The value of the prefix argument for this editing command.\n\ It may be a number, or the symbol - for just a minus sign as arg,\n\ or a list whose car is a number for just one or more C-U's\n\ or nil if no argument has been specified."); DefLispVar ("command-history", &Vcommand_history, "List of recent commands that read arguments from terminal.\n\ Each command is represented as (FUNCTION . ARGS)."); Vcommand_history = Qnil; defsubr (&Sinteractive); defsubr (&Scall_interactively); defsubr (&Sprefix_numeric_value); } @