aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorGlenn Morris2018-09-20 07:50:34 -0700
committerGlenn Morris2018-09-20 07:50:34 -0700
commit44c1ce3a370ed94199751d1429a65f40880b9234 (patch)
treec797f1b9a2aa388b2bfdd9ebe7b2a7555088d5ae /src/alloc.c
parent229c51afbf741b20504b821e6fd5da4145a776f5 (diff)
parentd28d54c76754759e5f0fc8254541fbb4ef6a21d8 (diff)
downloademacs-44c1ce3a370ed94199751d1429a65f40880b9234.tar.gz
emacs-44c1ce3a370ed94199751d1429a65f40880b9234.zip
Merge from origin/emacs-26
d28d54c (origin/emacs-26) More accurate docs for 'text-char-description' b3baf99 Document synchronous behavior of eshell/make (Bug#32513) 98544ea Fix bs-show with wide characters (Bug#17822) 85af51b Improve Custom menu labels for 2 options 72a2a36 Improve wording of last change in dired-x.texi d4fa83b Fix GnuTLS test suite with GnuTLS versions 3.4.x b5bee6b Fix build with gnutls versions 3.0 to 3.2 (Bug#32446) 67eb80e ; * etc/enriched.txt (hanging-indents): Remove extra indent. c71cfb7 Fix the Bubbles game on TTY frames 3bbf21b Add choice to reshow certificate information (Bug#31877) 6f2c471 * src/alloc.c (Fbool_vector, Flist, Fvector): Doc tweak. 39eecb3 * src/alloc.c (vector): Fix grammatical error in doc string: ...
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 6bced4e8f01..3b150797c36 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2425,7 +2425,7 @@ LENGTH must be a number. INIT matters only in whether it is t or nil. */)
2425 2425
2426DEFUN ("bool-vector", Fbool_vector, Sbool_vector, 0, MANY, 0, 2426DEFUN ("bool-vector", Fbool_vector, Sbool_vector, 0, MANY, 0,
2427 doc: /* Return a new bool-vector with specified arguments as elements. 2427 doc: /* Return a new bool-vector with specified arguments as elements.
2428Any number of arguments, even zero arguments, are allowed. 2428Allows any number of arguments, including zero.
2429usage: (bool-vector &rest OBJECTS) */) 2429usage: (bool-vector &rest OBJECTS) */)
2430 (ptrdiff_t nargs, Lisp_Object *args) 2430 (ptrdiff_t nargs, Lisp_Object *args)
2431{ 2431{
@@ -2872,7 +2872,7 @@ listn (enum constype type, ptrdiff_t count, Lisp_Object arg, ...)
2872 2872
2873DEFUN ("list", Flist, Slist, 0, MANY, 0, 2873DEFUN ("list", Flist, Slist, 0, MANY, 0,
2874 doc: /* Return a newly created list with specified arguments as elements. 2874 doc: /* Return a newly created list with specified arguments as elements.
2875Any number of arguments, even zero arguments, are allowed. 2875Allows any number of arguments, including zero.
2876usage: (list &rest OBJECTS) */) 2876usage: (list &rest OBJECTS) */)
2877 (ptrdiff_t nargs, Lisp_Object *args) 2877 (ptrdiff_t nargs, Lisp_Object *args)
2878{ 2878{
@@ -3497,7 +3497,7 @@ See also the function `vector'. */)
3497 3497
3498DEFUN ("vector", Fvector, Svector, 0, MANY, 0, 3498DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
3499 doc: /* Return a newly created vector with specified arguments as elements. 3499 doc: /* Return a newly created vector with specified arguments as elements.
3500Any number of arguments, even zero arguments, are allowed. 3500Allows any number of arguments, including zero.
3501usage: (vector &rest OBJECTS) */) 3501usage: (vector &rest OBJECTS) */)
3502 (ptrdiff_t nargs, Lisp_Object *args) 3502 (ptrdiff_t nargs, Lisp_Object *args)
3503{ 3503{
@@ -3729,7 +3729,7 @@ build_marker (struct buffer *buf, ptrdiff_t charpos, ptrdiff_t bytepos)
3729 elements. If all the arguments are characters that can fit 3729 elements. If all the arguments are characters that can fit
3730 in a string of events, make a string; otherwise, make a vector. 3730 in a string of events, make a string; otherwise, make a vector.
3731 3731
3732 Any number of arguments, even zero arguments, are allowed. */ 3732 Allows any number of arguments, including zero. */
3733 3733
3734Lisp_Object 3734Lisp_Object
3735make_event_array (ptrdiff_t nargs, Lisp_Object *args) 3735make_event_array (ptrdiff_t nargs, Lisp_Object *args)