This is macros.c in view mode; [Download] [Up]
/* Keyboard macros. Copyright (C) 1985, 1986, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Synched up with: FSF 19.28. */ /* A keyboard macro is a string of ASCII characters, or a vector of event objects. Only key-press, mouse-press, mouse-release, and menu-selection events ever get into a keyboard macro. When interactively defining a keyboard macro, it will always be a vector of events; strings may be executed for backwards compatibility. */ #include <config.h> #include "lisp.h" #include "events.h" #include "macros.h" #include "commands.h" #include "buffer.h" #include "window.h" #include "frame.h" #include "keymap.h" Lisp_Object Qexecute_kbd_macro; int defining_kbd_macro; /* This is a lisp vector, which contains the events of the keyboard macro currently being read. It is reallocated when the macro gets too large. */ static Lisp_Object kbd_macro_builder; /* index into the above vector which is for real */ int kbd_macro_ptr; /* The finalized section of the macro starts at kbd_macro_buffer and ends before this. This is not the same as kbd_macro_pointer, because we advance this to kbd_macro_pointer when a key's command is complete. This way, the keystrokes for "end-kbd-macro" are not included in the macro. */ int kbd_macro_end; Lisp_Object Vlast_kbd_macro; /* The current macro and our position in it. When executing nested kbd macros, previous values for these are wound through the execution stack with unwind-protect. */ Lisp_Object Vexecuting_macro; int executing_macro_index; DEFUN ("start-kbd-macro", Fstart_kbd_macro, Sstart_kbd_macro, 1, 1, "P", "Record subsequent keyboard and menu input, defining a keyboard macro.\n\ The commands are recorded even as they are executed.\n\ Use \\[end-kbd-macro] to finish recording and make the macro available.\n\ Use \\[name-last-kbd-macro] to give it a permanent name.\n\ Non-nil arg (prefix arg) means append to last macro defined;\n\ This begins by re-executing that macro as if you typed it again.") (append) Lisp_Object append; { /* This function can GC */ if (defining_kbd_macro) error ("Already defining kbd macro"); zmacs_region_stays = 1; /* set this before calling Fexecute_kbd_macro() so that functions there can override */ MARK_MODELINE_CHANGED; if (NILP (append)) { kbd_macro_ptr = 0; kbd_macro_end = 0; message ("Defining kbd macro..."); } else { message ("Appending to kbd macro..."); kbd_macro_ptr = kbd_macro_end; Fexecute_kbd_macro (Vlast_kbd_macro, make_number (1)); } defining_kbd_macro++; return Qnil; } DEFUN ("end-kbd-macro", Fend_kbd_macro, Send_kbd_macro, 0, 1, "P", "Finish defining a keyboard macro.\n\ The definition was started by \\[start-kbd-macro].\n\ The macro is now available for use via \\[call-last-kbd-macro],\n\ or it can be given a name with \\[name-last-kbd-macro] and then invoked\n\ under that name.\n\ \n\ With numeric arg, repeat macro now that many times,\n\ counting the definition just completed as the first repetition.\n\ An argument of zero means repeat until error.") (arg) Lisp_Object arg; { /* This function can GC */ int repeat; if (!defining_kbd_macro) error ("Not defining kbd macro."); if (NILP (arg)) repeat = -1; else repeat = XINT (Fprefix_numeric_value (arg)); if (defining_kbd_macro) { int i; int size = kbd_macro_end; Vlast_kbd_macro = make_vector (size, Qnil); for (i = 0; i < kbd_macro_end; i++) vector_data (XVECTOR (Vlast_kbd_macro)) [i] = vector_data (XVECTOR (kbd_macro_builder)) [i]; defining_kbd_macro = 0; MARK_MODELINE_CHANGED; message ("Keyboard macro defined"); } zmacs_region_stays = 1; /* set this before calling Fexecute_kbd_macro() so that functions there can override */ if (repeat < 0) return Qnil; else if (repeat == 0) return Fexecute_kbd_macro (Vlast_kbd_macro, Qzero); else return Fexecute_kbd_macro (Vlast_kbd_macro, make_number (repeat - 1)); } /* Store event into kbd macro being defined */ void store_kbd_macro_event (Lisp_Object event) { if (kbd_macro_ptr == XVECTOR (kbd_macro_builder)->size) { int i; int old_size = XVECTOR (kbd_macro_builder)->size; int new_size = old_size * 2; Lisp_Object new = make_vector (new_size, Qnil); for (i = 0; i < old_size; i++) vector_data (XVECTOR (new)) [i] = vector_data (XVECTOR (kbd_macro_builder)) [i]; kbd_macro_builder = new; } vector_data (XVECTOR (kbd_macro_builder)) [kbd_macro_ptr++] = Fcopy_event (event, Qnil); } /* Extract the next kbd-macro element into the given event. If we're done, throws to the catch in Fexecute_kbd_macro(). */ void pop_kbd_macro_event (Lisp_Object event) { if (NILP (Vexecuting_macro)) abort (); if (STRINGP (Vexecuting_macro)) { if (string_length (XSTRING (Vexecuting_macro)) > executing_macro_index) { unsigned int c = (unsigned char) (string_char (XSTRING (Vexecuting_macro), executing_macro_index++)); Fcharacter_to_event (make_number (c), event, Qnil); return; } } else if (VECTORP (Vexecuting_macro)) { if (XVECTOR (Vexecuting_macro)->size > executing_macro_index) { Lisp_Object macro_event = vector_data (XVECTOR (Vexecuting_macro)) [executing_macro_index++]; if (INTP (macro_event)) character_to_event (XINT (macro_event), XEVENT (event), 0); else if (CONSP (macro_event) || SYMBOLP (macro_event)) key_desc_list_to_event (macro_event, event, 1); else Fcopy_event (macro_event, event); return; } } else error ("junk in executing-macro"); Fthrow (Qexecute_kbd_macro, Qt); } /* Declare that all chars stored so far in the kbd macro being defined really belong to it. This is done in between editor commands. */ void finalize_kbd_macro_chars (void) { kbd_macro_end = kbd_macro_ptr; } DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro, Scall_last_kbd_macro, 0, 1, "p", "Call the last keyboard macro that you defined with \\[start-kbd-macro].\n\ \n\ A prefix argument serves as a repeat count. Zero means repeat until error.\n\ \n\ To make a macro permanent so you can call it even after\n\ defining others, use \\[name-last-kbd-macro].") (prefix) Lisp_Object prefix; { /* This function can GC */ if (defining_kbd_macro) error ("Can't execute anonymous macro while defining one"); else if (NILP (Vlast_kbd_macro)) error ("No kbd macro has been defined"); else Fexecute_kbd_macro (Vlast_kbd_macro, prefix); return Qnil; } /* Restore Vexecuting_macro and executing_macro_index - called when the unwind-protect in Fexecute_kbd_macro gets invoked. */ static Lisp_Object pop_kbd_macro (Lisp_Object info) { Lisp_Object tem; Vexecuting_macro = Fcar (info); tem = Fcdr (info); executing_macro_index = XINT (tem); return Qnil; } DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 2, 0, "Execute MACRO as string of editor command characters.\n\ If MACRO is a symbol, its function definition is used.\n\ COUNT is a repeat count, or nil for once, or 0 for infinite loop.") (macro, prefixarg) Lisp_Object macro, prefixarg; { /* This function can GC */ Lisp_Object final; Lisp_Object tem; int speccount = specpdl_depth (); int repeat = 1; struct gcpro gcpro1; if (!NILP (prefixarg)) { prefixarg = Fprefix_numeric_value (prefixarg); repeat = XINT (prefixarg); } final = indirect_function (macro, 1); if (!STRINGP (final) && !VECTORP (final)) error ("Keyboard macros must be strings or vectors."); tem = Fcons (Vexecuting_macro, make_number (executing_macro_index)); record_unwind_protect (pop_kbd_macro, tem); GCPRO1 (final); do { Vexecuting_macro = final; executing_macro_index = 0; internal_catch (Qexecute_kbd_macro, call_command_loop, Qnil, 0); } while (--repeat != 0 && (STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))); UNGCPRO; return unbind_to (speccount, Qnil); } void syms_of_macros (void) { defsubr (&Sstart_kbd_macro); defsubr (&Send_kbd_macro); defsubr (&Scall_last_kbd_macro); defsubr (&Sexecute_kbd_macro); defsymbol (&Qexecute_kbd_macro, "execute-kbd-macro"); } void vars_of_macros (void) { kbd_macro_builder = make_vector (100, Qnil); kbd_macro_end = kbd_macro_ptr = 0; staticpro (&kbd_macro_builder); DEFVAR_BOOL ("defining-kbd-macro", &defining_kbd_macro, "Non-nil while a keyboard macro is being defined. Don't set this!"); DEFVAR_LISP ("executing-macro", &Vexecuting_macro, "Currently executing keyboard macro (a vector of events);\n\ nil if none executing."); DEFVAR_LISP ("executing-kbd-macro", &Vexecuting_macro, "Currently executing keyboard macro (a vector of events);\n\ nil if none executing."); DEFVAR_LISP ("last-kbd-macro", &Vlast_kbd_macro, "Last kbd macro defined, as a vector of events; nil if none defined."); } void init_macros (void) { Vlast_kbd_macro = Qnil; defining_kbd_macro = 0; Vexecuting_macro = Qnil; }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.