Mercurial > emacs
changeset 687:e2b747dd6a6e
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 04 Jun 1992 06:43:29 +0000 |
parents | bd3068742807 |
children | 23cbc2c463eb |
files | src/dispnew.c src/eval.c src/keyboard.c src/print.c src/xfns.c |
diffstat | 5 files changed, 16 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Thu Jun 04 06:29:12 1992 +0000 +++ b/src/dispnew.c Thu Jun 04 06:43:29 1992 +0000 @@ -1794,7 +1794,7 @@ if (!NILP (millisec)) { #ifndef EMACS_HAS_USECS - error ("millisecond sit-for not supported on %s", SYSTEM_TYPE); + error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE); #else usec = sec % 1000 * 1000; sec /= 1000; @@ -1913,7 +1913,7 @@ if (!NILP (millisec)) { #ifndef EMACS_HAS_USECS - error ("millisecond sit-for not supported on %s", SYSTEM_TYPE); + error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE); #else usec = (sec % 1000) * 1000; sec /= 1000;
--- a/src/eval.c Thu Jun 04 06:29:12 1992 +0000 +++ b/src/eval.c Thu Jun 04 06:43:29 1992 +0000 @@ -520,7 +520,8 @@ but the definition can supply documentation and an initial value\n\ in a way that tags can recognize.\n\n\ INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\ -If SYMBOL is buffer-local, its default value is initialized in this way.\n\ +If SYMBOL is buffer-local, its default value is what is set;\n\ + buffer-local values are not affected.\n\ INITVALUE and DOCSTRING are optional.\n\ If DOCSTRING starts with *, this variable is identified as a user option.\n\ This means that M-x set-variable and M-x edit-options recognize it.\n\ @@ -552,7 +553,8 @@ "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\ The intent is that programs do not change this value, but users may.\n\ Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\ -If SYMBOL is buffer-local, its default value is initialized in this way.\n\ +If SYMBOL is buffer-local, its default value is what is set;\n\ + buffer-local values are not affected.\n\ DOCSTRING is optional.\n\ If DOCSTRING starts with *, this variable is identified as a user option.\n\ This means that M-x set-variable and M-x edit-options recognize it.\n\n\
--- a/src/keyboard.c Thu Jun 04 06:29:12 1992 +0000 +++ b/src/keyboard.c Thu Jun 04 06:43:29 1992 +0000 @@ -155,7 +155,7 @@ /* Last size recorded for a current buffer which is not a minibuffer. */ static int last_non_minibuf_size; -/* Number of idle seconds before an auto-save. */ +/* Number of idle seconds before an auto-save and garbage collection. */ static Lisp_Object Vauto_save_timeout; /* Total number of times read_char has returned. */ @@ -3569,7 +3569,9 @@ DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, "*Number of seconds idle time before auto-save.\n\ -Zero or nil means disable auto-saving due to idleness."); +Zero or nil means disable auto-saving due to idleness.\n\ +After auto-saving due to this many seconds of idle time,\n\ +Emacs also does a garbage collection if that seems to be warranted." XFASTINT (Vauto_save_timeout) = 30; DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
--- a/src/print.c Thu Jun 04 06:29:12 1992 +0000 +++ b/src/print.c Thu Jun 04 06:43:29 1992 +0000 @@ -942,7 +942,7 @@ #ifdef LISP_FLOAT_TYPE DEFVAR_LISP ("float-output-format", &Vfloat_output_format, - "The format descriptor string that lisp uses to print floats.\n\ + "The format descriptor string used to print floats.\n\ This is a %-spec like those accepted by `printf' in C,\n\ but with some restrictions. It must start with the two characters `%.'.\n\ After that comes an integer precision specification,\n\
--- a/src/xfns.c Thu Jun 04 06:29:12 1992 +0000 +++ b/src/xfns.c Thu Jun 04 06:43:29 1992 +0000 @@ -3330,6 +3330,7 @@ } #endif +#if 0 DEFUN ("x-horizontal-line", Fx_horizontal_line, Sx_horizontal_line, 1, 1, "e", "") (event) @@ -3421,6 +3422,7 @@ UNBLOCK_INPUT; } } +#endif /* Offset in buffer of character under the pointer, or 0. */ int mouse_buffer_offset; @@ -4304,7 +4306,7 @@ Vx_nontext_pointer_shape = Qnil; DEFVAR_INT ("x-mode-pointer-shape", &Vx_mode_pointer_shape, - "The shape of the pointer when not over text."); + "The shape of the pointer when over the mode line."); Vx_mode_pointer_shape = Qnil; DEFVAR_LISP ("x-bar-cursor", &Vbar_cursor, @@ -4370,7 +4372,9 @@ defsubr (&Sx_create_screen); defsubr (&Sfocus_screen); defsubr (&Sunfocus_screen); +#if 0 defsubr (&Sx_horizontal_line); +#endif defsubr (&Sx_rebind_key); defsubr (&Sx_rebind_keys); defsubr (&Sx_open_connection);