]> git.eshelyaron.com Git - emacs.git/commitdiff
Typo fixes in elisp manual
authorBogdan Creanga <bogdan.creanga@gmail.com>
Tue, 29 Nov 2016 10:07:15 +0000 (19:07 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Tue, 29 Nov 2016 10:07:15 +0000 (19:07 +0900)
* doc/lispref/sequences.texi: Add missing '4' in result (Bug#25047).
* doc/lispref/strings.texi (Text Comparison): Avoid duplicate
definitions of 'string-prefix-p' and 'string-suffix-p'.
* doc/lispref/symbols.texi (Definitions): Pluralize 'definitions'.

Copyright-paperwork-exempt: yes

doc/lispref/sequences.texi
doc/lispref/strings.texi
doc/lispref/symbols.texi

index a54ab104ab55408807b0e488e7fb9c407afd9849..920399586c54df9f58fbe05896b22091f79fb9c1 100644 (file)
@@ -832,7 +832,7 @@ concatenation of @var{sequences}.  @var{type} may be: @code{vector},
 @example
 @group
 (seq-concatenate 'list '(1 2) '(3 4) [5 6])
-@result{} (1 2 3 5 6)
+@result{} (1 2 3 5 6)
 @end group
 @group
 (seq-concatenate 'string "Hello " "world")
index 5fee37361fd0ae49e30fa4495dfd3b9d10381744..3c764da4e2b896312c8aa78a7621cd55c230915c 100644 (file)
@@ -508,20 +508,6 @@ filesystems generally don't honor linguistic equivalence of strings
 that collation implements.
 @end defun
 
-@defun string-prefix-p string1 string2 &optional ignore-case
-This function returns non-@code{nil} if @var{string1} is a prefix of
-@var{string2}; i.e., if @var{string2} starts with @var{string1}.  If
-the optional argument @var{ignore-case} is non-@code{nil}, the
-comparison ignores case differences.
-@end defun
-
-@defun string-suffix-p suffix string &optional ignore-case
-This function returns non-@code{nil} if @var{suffix} is a suffix of
-@var{string}; i.e., if @var{string} ends with @var{suffix}.  If the
-optional argument @var{ignore-case} is non-@code{nil}, the comparison
-ignores case differences.
-@end defun
-
 @cindex lexical comparison of strings
 @defun string< string1 string2
 @c (findex string< causes problems for permuted index!!)
index 8c1ec3d85e230f17622e44d50e1ee80d2632af64..36a2795d1dd77788c411eaffb3864a17e1941049 100644 (file)
@@ -157,7 +157,7 @@ that cell can hold only one Lisp object at any given time.
 both as a variable (e.g., with @code{defvar}) and as a function or
 macro (e.g., with @code{defun}).  Such definitions do not conflict.
 
-  These definition also act as guides for programming tools.  For
+  These definitions also act as guides for programming tools.  For
 example, the @kbd{C-h f} and @kbd{C-h v} commands create help buffers
 containing links to the relevant variable, function, or macro
 definitions.  @xref{Name Help,,, emacs, The GNU Emacs Manual}.