comparison src/insdel.c @ 41001:a17c8b15ef1b

Change doc-string comments to `new style' [w/`doc:' keyword].
author Pavel Janík <Pavel@Janik.cz>
date Tue, 13 Nov 2001 07:48:37 +0000
parents 5ed9e7521ec5
children 71cbc17f7f8b
comparison
equal deleted inserted replaced
41000:030176b8a696 41001:a17c8b15ef1b
2062 Vcombine_after_change_calls = val; 2062 Vcombine_after_change_calls = val;
2063 return val; 2063 return val;
2064 } 2064 }
2065 2065
2066 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute, 2066 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
2067 Scombine_after_change_execute, 0, 0, 0, 2067 Scombine_after_change_execute, 0, 0, 0,
2068 "This function is for use internally in `combine-after-change-calls'.") 2068 doc: /* This function is for use internally in `combine-after-change-calls'. */)
2069 () 2069 ()
2070 { 2070 {
2071 int count = specpdl_ptr - specpdl; 2071 int count = specpdl_ptr - specpdl;
2072 int beg, end, change; 2072 int beg, end, change;
2073 int begpos, endpos; 2073 int begpos, endpos;
2074 Lisp_Object tail; 2074 Lisp_Object tail;
2143 staticpro (&combine_after_change_list); 2143 staticpro (&combine_after_change_list);
2144 combine_after_change_list = Qnil; 2144 combine_after_change_list = Qnil;
2145 combine_after_change_buffer = Qnil; 2145 combine_after_change_buffer = Qnil;
2146 2146
2147 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag, 2147 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag,
2148 "Non-nil means enable debugging checks for invalid marker positions."); 2148 doc: /* Non-nil means enable debugging checks for invalid marker positions. */);
2149 check_markers_debug_flag = 0; 2149 check_markers_debug_flag = 0;
2150 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls, 2150 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls,
2151 "Used internally by the `combine-after-change-calls' macro."); 2151 doc: /* Used internally by the `combine-after-change-calls' macro. */);
2152 Vcombine_after_change_calls = Qnil; 2152 Vcombine_after_change_calls = Qnil;
2153 2153
2154 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks, 2154 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks,
2155 "Non-nil means don't run any of the hooks that respond to buffer changes.\n\ 2155 doc: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2156 This affects `before-change-functions' and `after-change-functions',\n\ 2156 This affects `before-change-functions' and `after-change-functions',
2157 as well as hooks attached to text properties and overlays."); 2157 as well as hooks attached to text properties and overlays. */);
2158 inhibit_modification_hooks = 0; 2158 inhibit_modification_hooks = 0;
2159 Qinhibit_modification_hooks = intern ("inhibit-modification-hooks"); 2159 Qinhibit_modification_hooks = intern ("inhibit-modification-hooks");
2160 staticpro (&Qinhibit_modification_hooks); 2160 staticpro (&Qinhibit_modification_hooks);
2161 2161
2162 defsubr (&Scombine_after_change_execute); 2162 defsubr (&Scombine_after_change_execute);