aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2002-04-01 22:54:03 +0000
committerStefan Monnier2002-04-01 22:54:03 +0000
commit4bc26a6c68113e9ac9d33755a109cbcf7acb4b69 (patch)
treea9a249cfd614e0755b0796eb7a43e800fc54fa8f /src
parent1b8dc7911a1afd404142a8b4c3bcb68e3315f667 (diff)
downloademacs-4bc26a6c68113e9ac9d33755a109cbcf7acb4b69.tar.gz
emacs-4bc26a6c68113e9ac9d33755a109cbcf7acb4b69.zip
(Fstring): Allow 0 arguments.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c10
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;
49Lisp_Object Qunknown; 49Lisp_Object Qunknown;
50 50
51/* Declaration of special leading-codes. */ 51/* Declaration of special leading-codes. */
52EMACS_INT leading_code_private_11; /* for private DIMENSION1 of 1-column */ 52EMACS_INT leading_code_private_11; /* for private DIMENSION1 of 1-column */
53EMACS_INT leading_code_private_12; /* for private DIMENSION1 of 2-column */ 53EMACS_INT leading_code_private_12; /* for private DIMENSION1 of 2-column */
54EMACS_INT leading_code_private_21; /* for private DIMENSION2 of 1-column */ 54EMACS_INT leading_code_private_21; /* for private DIMENSION2 of 1-column */
55EMACS_INT leading_code_private_22; /* for private DIMENSION2 of 2-column */ 55EMACS_INT leading_code_private_22; /* for private DIMENSION2 of 2-column */
56 56
57/* Declaration of special charsets. The values are set by 57/* Declaration of special charsets. The values are set by
58 Fsetup_special_charsets. */ 58 Fsetup_special_charsets. */
@@ -1633,7 +1633,7 @@ str_as_unibyte (str, bytes)
1633} 1633}
1634 1634
1635 1635
1636DEFUN ("string", Fstring, Sstring, 1, MANY, 0, 1636DEFUN ("string", Fstring, Sstring, 0, MANY, 0,
1637 doc: /* Concatenate all the argument characters and make the result a string. 1637 doc: /* Concatenate all the argument characters and make the result a string.
1638usage: (string &rest CHARACTERS) */) 1638usage: (string &rest CHARACTERS) */)
1639 (n, args) 1639 (n, args)