mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 03:20:39 -08:00
(Fml_if, Fml_provide_prefix_argument)
(Finsert_string): Avoid the multi-line string literals warning.
This commit is contained in:
parent
c169b8f145
commit
93026d88c2
2 changed files with 8 additions and 3 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* mocklisp.c (Fml_if, Fml_provide_prefix_argument)
|
||||
(Finsert_string): Avoid the multi-line string literals warning.
|
||||
|
||||
2001-10-22 Miles Bader <miles@gnu.org>
|
||||
|
||||
* doc.c (Vhelp_manyarg_func_alist): Variable removed.
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. */
|
|||
*/
|
||||
|
||||
DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0,
|
||||
"Mocklisp version of `if'.
|
||||
"Mocklisp version of `if'.\n\
|
||||
usage: (ml-if COND THEN ELSE...)")
|
||||
(args)
|
||||
Lisp_Object args;
|
||||
|
|
@ -139,7 +139,7 @@ DEFUN ("ml-interactive", Fml_interactive, Sml_interactive, 0, 0, 0,
|
|||
|
||||
DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_prefix_argument,
|
||||
2, UNEVALLED, 0,
|
||||
"Evaluate second argument, using first argument as prefix arg value.
|
||||
"Evaluate second argument, using first argument as prefix arg value.\n\
|
||||
usage: (ml-provide-prefix-argument ARG1 ARG2)")
|
||||
(args)
|
||||
Lisp_Object args;
|
||||
|
|
@ -204,7 +204,7 @@ If either FROM or LENGTH is negative, the length of STRING is added to it.")
|
|||
DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0,
|
||||
"Mocklisp-compatibility insert function.\n\
|
||||
Like the function `insert' except that any argument that is a number\n\
|
||||
is converted into a string by expressing it in decimal.
|
||||
is converted into a string by expressing it in decimal.\n\
|
||||
usage: (insert-string &rest ARGS)")
|
||||
(nargs, args)
|
||||
int nargs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue