diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-01 22:54:03 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-01 22:54:03 +0000 |
commit | 4bc26a6c68113e9ac9d33755a109cbcf7acb4b69 (patch) | |
tree | a9a249cfd614e0755b0796eb7a43e800fc54fa8f | |
parent | 1b8dc7911a1afd404142a8b4c3bcb68e3315f667 (diff) | |
download | emacs-4bc26a6c68113e9ac9d33755a109cbcf7acb4b69.tar.gz |
(Fstring): Allow 0 arguments.
-rw-r--r-- | src/charset.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c index 66c239d1bc2..818457f8e1b 100644 --- a/src/charset.c +++ b/src/charset.c @@ -49,10 +49,10 @@ Lisp_Object Qcharset, Qascii, Qeight_bit_control, Qeight_bit_graphic; Lisp_Object Qunknown; /* Declaration of special leading-codes. */ -EMACS_INT leading_code_private_11; /* for private DIMENSION1 of 1-column */ -EMACS_INT leading_code_private_12; /* for private DIMENSION1 of 2-column */ -EMACS_INT leading_code_private_21; /* for private DIMENSION2 of 1-column */ -EMACS_INT leading_code_private_22; /* for private DIMENSION2 of 2-column */ +EMACS_INT leading_code_private_11; /* for private DIMENSION1 of 1-column */ +EMACS_INT leading_code_private_12; /* for private DIMENSION1 of 2-column */ +EMACS_INT leading_code_private_21; /* for private DIMENSION2 of 1-column */ +EMACS_INT leading_code_private_22; /* for private DIMENSION2 of 2-column */ /* Declaration of special charsets. The values are set by Fsetup_special_charsets. */ @@ -1633,7 +1633,7 @@ str_as_unibyte (str, bytes) } -DEFUN ("string", Fstring, Sstring, 1, MANY, 0, +DEFUN ("string", Fstring, Sstring, 0, MANY, 0, doc: /* Concatenate all the argument characters and make the result a string. usage: (string &rest CHARACTERS) */) (n, args) |