diff options
| author | Stephen Berman | 2016-06-06 09:29:17 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-06-06 09:30:22 -0700 |
| commit | 9d5ccebeba0506f7280662630f0ee85a52c8a327 (patch) | |
| tree | 2416109c65e45b2f62e6eec7cf124fb0f41fcc12 /src/syntax.c | |
| parent | 0b33a23ffecdb4ca87806c9fc7568d17c5ca7e98 (diff) | |
| download | emacs-9d5ccebeba0506f7280662630f0ee85a52c8a327.tar.gz emacs-9d5ccebeba0506f7280662630f0ee85a52c8a327.zip | |
Fix doc string quoting
* lisp/files.el (shell-quote-wildcard-pattern):
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/subr.el (replace-regexp-in-string):
* lisp/view.el (view-mode):
* src/nsfns.m (syms_of_nsfns):
* src/syntax.c (Fbackward_prefix_chars):
Fix quoting problems in doc strings (Bug#23696).
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 8e14bf3fb1d..16b7fabe938 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -3079,7 +3079,7 @@ but before count is used up, nil is returned. */) | |||
| 3079 | DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, | 3079 | DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, |
| 3080 | 0, 0, 0, | 3080 | 0, 0, 0, |
| 3081 | doc: /* Move point backward over any number of chars with prefix syntax. | 3081 | doc: /* Move point backward over any number of chars with prefix syntax. |
| 3082 | This includes chars with expression prefix syntax class (') and those with | 3082 | This includes chars with expression prefix syntax class (\\=') and those with |
| 3083 | the prefix syntax flag (p). */) | 3083 | the prefix syntax flag (p). */) |
| 3084 | (void) | 3084 | (void) |
| 3085 | { | 3085 | { |