# HG changeset patch # User Erik Naggum # Date 846769417 0 # Node ID 9b919c5464a44f0b1f14c8471b0aebfc1c4a327a # Parent 96df462c5f156ff7e1ba3f1853e93f48eab755e1 Reorganize function definitions so etags finds them. diff -r 96df462c5f15 -r 9b919c5464a4 src/abbrev.c --- a/src/abbrev.c Wed Oct 30 05:11:12 1996 +0000 +++ b/src/abbrev.c Thu Oct 31 13:43:37 1996 +0000 @@ -417,9 +417,8 @@ 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\ diff -r 96df462c5f15 -r 9b919c5464a4 src/editfns.c --- a/src/editfns.c Wed Oct 30 05:11:12 1996 +0000 +++ b/src/editfns.c Thu Oct 31 13:43:37 1996 +0000 @@ -1159,9 +1159,8 @@ 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.") diff -r 96df462c5f15 -r 9b919c5464a4 src/eval.c --- a/src/eval.c Wed Oct 30 05:11:12 1996 +0000 +++ b/src/eval.c Thu Oct 31 13:43:37 1996 +0000 @@ -1942,8 +1942,8 @@ 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 @@ 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 @@ 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\ diff -r 96df462c5f15 -r 9b919c5464a4 src/window.c --- a/src/window.c Wed Oct 30 05:11:12 1996 +0000 +++ b/src/window.c Thu Oct 31 13:43:37 1996 +0000 @@ -3353,8 +3353,8 @@ 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\ diff -r 96df462c5f15 -r 9b919c5464a4 src/xselect.c --- a/src/xselect.c Wed Oct 30 05:11:12 1996 +0000 +++ b/src/xselect.c Thu Oct 31 13:43:37 1996 +0000 @@ -1736,9 +1736,8 @@ } -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 @@ 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 @@ 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)