diff options
author | Nicolas Richard <theonewiththeevillook@yahoo.fr> | 2015-06-11 11:46:14 +0200 |
---|---|---|
committer | Nicolas Richard <theonewiththeevillook@yahoo.fr> | 2015-06-11 11:49:00 +0200 |
commit | ece5691fe63e2c522ba4e956c5908ac65ea27abe (patch) | |
tree | a91d8b14f3ab2b847dd71414c8516a490a1aa180 | |
parent | 45deb048ad6d6b93082515773df2ba21006c2f42 (diff) | |
download | emacs-ece5691fe63e2c522ba4e956c5908ac65ea27abe.tar.gz |
* src/syntax.c (Fbackward_prefix_chars): Reword docstring
-rw-r--r-- | src/syntax.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 1695815902a..0d8b08c01b6 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3013,7 +3013,8 @@ but before count is used up, nil is returned. */) DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, 0, 0, 0, doc: /* Move point backward over any number of chars with prefix syntax. -This includes chars with "quote" or "prefix" syntax (' or p). */) +This includes chars with expression prefix syntax class (') and those with +the prefix syntax flag (p). */) (void) { ptrdiff_t beg = BEGV; |