#elisp
Function:
make-string count characterThis function returns a string made up of count repetitions of character . If count is negative, an error is signaled.
If you want to change selection, open document below and click on "Move attachment"
GNU Emacs Lisp Reference Manual: Creating StringsStrings, Previous: Predicates for Strings, Up: Strings and Characters [Contents][Index]
4.3 Creating Strings
The following functions create strings, either from scratch, or by
putting strings together, or by taking them apart.
<span>Function: make-string count character This function returns a string made up of count repetitions of
character . If count is negative, an error is signaled.
(make-string 5 ?x)
⇒ "xxxxx"
(make-string 0 ?x)
⇒ ""
Other functions to compare with this one include make-vector
(see Vectors) and make-list (see B Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details