Reorganize function definitions so etags finds them.

This commit is contained in:
Erik Naggum 1996-10-31 13:43:37 +00:00
parent 9939d191eb
commit a0d76c279e
5 changed files with 18 additions and 23 deletions

View file

@ -417,9 +417,8 @@ describe_abbrev (sym, stream)
Fterpri (stream);
}
DEFUN ("insert-abbrev-table-description",
Finsert_abbrev_table_description, Sinsert_abbrev_table_description,
1, 2, 0,
DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,
Sinsert_abbrev_table_description, 1, 2, 0,
"Insert before point a full description of abbrev table named NAME.\n\
NAME is a symbol whose value is an abbrev table.\n\
If optional 2nd arg READABLE is non-nil, a human-readable description\n\

View file

@ -1159,9 +1159,8 @@ Any other markers at the point of insertion also end up after the text.")
return Qnil;
}
DEFUN ("insert-before-markers-and-inherit",
Finsert_and_inherit_before_markers, Sinsert_and_inherit_before_markers,
0, MANY, 0,
DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
Sinsert_and_inherit_before_markers, 0, MANY, 0,
"Insert text at point, relocating markers and inheriting properties.\n\
Point moves forward so that it ends up after the inserted text.\n\
Any other markers at the point of insertion also end up after the text.")

View file

@ -1942,8 +1942,8 @@ not `make-local-variable'.")
return Qnil;
}
DEFUN ("run-hook-with-args",
Frun_hook_with_args, Srun_hook_with_args, 1, MANY, 0,
DEFUN ("run-hook-with-args", Frun_hook_with_args,
Srun_hook_with_args, 1, MANY, 0,
"Run HOOK with the specified arguments ARGS.\n\
HOOK should be a symbol, a hook variable. If HOOK has a non-nil\n\
value, that value may be a function or a list of functions to be\n\
@ -1963,9 +1963,8 @@ not `make-local-variable'.")
return run_hook_with_args (nargs, args, to_completion);
}
DEFUN ("run-hook-with-args-until-success",
Frun_hook_with_args_until_success, Srun_hook_with_args_until_success,
1, MANY, 0,
DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success,
Srun_hook_with_args_until_success, 1, MANY, 0,
"Run HOOK with the specified arguments ARGS.\n\
HOOK should be a symbol, a hook variable. Its value should\n\
be a list of functions. We call those functions, one by one,\n\
@ -1982,9 +1981,8 @@ not `make-local-variable'.")
return run_hook_with_args (nargs, args, until_success);
}
DEFUN ("run-hook-with-args-until-failure",
Frun_hook_with_args_until_failure, Srun_hook_with_args_until_failure,
1, MANY, 0,
DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure,
Srun_hook_with_args_until_failure, 1, MANY, 0,
"Run HOOK with the specified arguments ARGS.\n\
HOOK should be a symbol, a hook variable. Its value should\n\
be a list of functions. We call those functions, one by one,\n\

View file

@ -3353,8 +3353,8 @@ save_window_save (window, vector, i)
return i;
}
DEFUN ("current-window-configuration",
Fcurrent_window_configuration, Scurrent_window_configuration, 0, 1, 0,
DEFUN ("current-window-configuration", Fcurrent_window_configuration,
Scurrent_window_configuration, 0, 1, 0,
"Return an object representing the current window configuration of FRAME.\n\
If FRAME is nil or omitted, use the selected frame.\n\
This describes the number of windows, their sizes and current buffers,\n\

View file

@ -1736,9 +1736,8 @@ x_handle_selection_notify (event)
}
DEFUN ("x-own-selection-internal",
Fx_own_selection_internal, Sx_own_selection_internal,
2, 2, 0,
DEFUN ("x-own-selection-internal", Fx_own_selection_internal,
Sx_own_selection_internal, 2, 2, 0,
"Assert an X selection of the given TYPE with the given VALUE.\n\
TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
\(Those are literal upper-case symbol names, since that's what X expects.)\n\
@ -1759,8 +1758,8 @@ anything that the functions on `selection-converter-alist' know about.")
simply return our selection value. If we are not the owner, this
will block until all of the data has arrived. */
DEFUN ("x-get-selection-internal",
Fx_get_selection_internal, Sx_get_selection_internal, 2, 2, 0,
DEFUN ("x-get-selection-internal", Fx_get_selection_internal,
Sx_get_selection_internal, 2, 2, 0,
"Return text selected from some X window.\n\
SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
\(Those are literal upper-case symbol names, since that's what X expects.)\n\
@ -1807,8 +1806,8 @@ TYPE is the type of data desired, typically `STRING'.")
return val;
}
DEFUN ("x-disown-selection-internal",
Fx_disown_selection_internal, Sx_disown_selection_internal, 1, 2, 0,
DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal,
Sx_disown_selection_internal, 1, 2, 0,
"If we own the selection SELECTION, disown it.\n\
Disowning it means there is no such selection.")
(selection, time)