diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
| -rw-r--r-- | src/buffer.c | 54 | ||||
| -rw-r--r-- | src/data.c | 2 | ||||
| -rw-r--r-- | src/dired.c | 2 | ||||
| -rw-r--r-- | src/editfns.c | 2 | ||||
| -rw-r--r-- | src/eval.c | 6 | ||||
| -rw-r--r-- | src/fileio.c | 2 | ||||
| -rw-r--r-- | src/fns.c | 4 | ||||
| -rw-r--r-- | src/frame.c | 6 | ||||
| -rw-r--r-- | src/image.c | 2 | ||||
| -rw-r--r-- | src/keyboard.c | 2 | ||||
| -rw-r--r-- | src/print.c | 2 | ||||
| -rw-r--r-- | src/process.c | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 4 | ||||
| -rw-r--r-- | src/xfaces.c | 4 |
14 files changed, 48 insertions, 48 deletions
diff --git a/src/buffer.c b/src/buffer.c index fc2ee82e447..33f7996a8c1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5402,140 +5402,140 @@ syms_of_buffer (void) | |||
| 5402 | DEFVAR_BUFFER_DEFAULTS ("default-mode-line-format", | 5402 | DEFVAR_BUFFER_DEFAULTS ("default-mode-line-format", |
| 5403 | mode_line_format, | 5403 | mode_line_format, |
| 5404 | doc: /* Default value of `mode-line-format' for buffers that don't override it. | 5404 | doc: /* Default value of `mode-line-format' for buffers that don't override it. |
| 5405 | This is the same as (default-value 'mode-line-format). */); | 5405 | This is the same as (default-value \\='mode-line-format). */); |
| 5406 | 5406 | ||
| 5407 | DEFVAR_BUFFER_DEFAULTS ("default-header-line-format", | 5407 | DEFVAR_BUFFER_DEFAULTS ("default-header-line-format", |
| 5408 | header_line_format, | 5408 | header_line_format, |
| 5409 | doc: /* Default value of `header-line-format' for buffers that don't override it. | 5409 | doc: /* Default value of `header-line-format' for buffers that don't override it. |
| 5410 | This is the same as (default-value 'header-line-format). */); | 5410 | This is the same as (default-value \\='header-line-format). */); |
| 5411 | 5411 | ||
| 5412 | DEFVAR_BUFFER_DEFAULTS ("default-cursor-type", cursor_type, | 5412 | DEFVAR_BUFFER_DEFAULTS ("default-cursor-type", cursor_type, |
| 5413 | doc: /* Default value of `cursor-type' for buffers that don't override it. | 5413 | doc: /* Default value of `cursor-type' for buffers that don't override it. |
| 5414 | This is the same as (default-value 'cursor-type). */); | 5414 | This is the same as (default-value \\='cursor-type). */); |
| 5415 | 5415 | ||
| 5416 | DEFVAR_BUFFER_DEFAULTS ("default-line-spacing", | 5416 | DEFVAR_BUFFER_DEFAULTS ("default-line-spacing", |
| 5417 | extra_line_spacing, | 5417 | extra_line_spacing, |
| 5418 | doc: /* Default value of `line-spacing' for buffers that don't override it. | 5418 | doc: /* Default value of `line-spacing' for buffers that don't override it. |
| 5419 | This is the same as (default-value 'line-spacing). */); | 5419 | This is the same as (default-value \\='line-spacing). */); |
| 5420 | 5420 | ||
| 5421 | DEFVAR_BUFFER_DEFAULTS ("default-cursor-in-non-selected-windows", | 5421 | DEFVAR_BUFFER_DEFAULTS ("default-cursor-in-non-selected-windows", |
| 5422 | cursor_in_non_selected_windows, | 5422 | cursor_in_non_selected_windows, |
| 5423 | doc: /* Default value of `cursor-in-non-selected-windows'. | 5423 | doc: /* Default value of `cursor-in-non-selected-windows'. |
| 5424 | This is the same as (default-value 'cursor-in-non-selected-windows). */); | 5424 | This is the same as (default-value \\='cursor-in-non-selected-windows). */); |
| 5425 | 5425 | ||
| 5426 | DEFVAR_BUFFER_DEFAULTS ("default-abbrev-mode", | 5426 | DEFVAR_BUFFER_DEFAULTS ("default-abbrev-mode", |
| 5427 | abbrev_mode, | 5427 | abbrev_mode, |
| 5428 | doc: /* Default value of `abbrev-mode' for buffers that do not override it. | 5428 | doc: /* Default value of `abbrev-mode' for buffers that do not override it. |
| 5429 | This is the same as (default-value 'abbrev-mode). */); | 5429 | This is the same as (default-value \\='abbrev-mode). */); |
| 5430 | 5430 | ||
| 5431 | DEFVAR_BUFFER_DEFAULTS ("default-ctl-arrow", | 5431 | DEFVAR_BUFFER_DEFAULTS ("default-ctl-arrow", |
| 5432 | ctl_arrow, | 5432 | ctl_arrow, |
| 5433 | doc: /* Default value of `ctl-arrow' for buffers that do not override it. | 5433 | doc: /* Default value of `ctl-arrow' for buffers that do not override it. |
| 5434 | This is the same as (default-value 'ctl-arrow). */); | 5434 | This is the same as (default-value \\='ctl-arrow). */); |
| 5435 | 5435 | ||
| 5436 | DEFVAR_BUFFER_DEFAULTS ("default-enable-multibyte-characters", | 5436 | DEFVAR_BUFFER_DEFAULTS ("default-enable-multibyte-characters", |
| 5437 | enable_multibyte_characters, | 5437 | enable_multibyte_characters, |
| 5438 | doc: /* Default value of `enable-multibyte-characters' for buffers not overriding it. | 5438 | doc: /* Default value of `enable-multibyte-characters' for buffers not overriding it. |
| 5439 | This is the same as (default-value 'enable-multibyte-characters). */); | 5439 | This is the same as (default-value \\='enable-multibyte-characters). */); |
| 5440 | 5440 | ||
| 5441 | DEFVAR_BUFFER_DEFAULTS ("default-buffer-file-coding-system", | 5441 | DEFVAR_BUFFER_DEFAULTS ("default-buffer-file-coding-system", |
| 5442 | buffer_file_coding_system, | 5442 | buffer_file_coding_system, |
| 5443 | doc: /* Default value of `buffer-file-coding-system' for buffers not overriding it. | 5443 | doc: /* Default value of `buffer-file-coding-system' for buffers not overriding it. |
| 5444 | This is the same as (default-value 'buffer-file-coding-system). */); | 5444 | This is the same as (default-value \\='buffer-file-coding-system). */); |
| 5445 | 5445 | ||
| 5446 | DEFVAR_BUFFER_DEFAULTS ("default-truncate-lines", | 5446 | DEFVAR_BUFFER_DEFAULTS ("default-truncate-lines", |
| 5447 | truncate_lines, | 5447 | truncate_lines, |
| 5448 | doc: /* Default value of `truncate-lines' for buffers that do not override it. | 5448 | doc: /* Default value of `truncate-lines' for buffers that do not override it. |
| 5449 | This is the same as (default-value 'truncate-lines). */); | 5449 | This is the same as (default-value \\='truncate-lines). */); |
| 5450 | 5450 | ||
| 5451 | DEFVAR_BUFFER_DEFAULTS ("default-fill-column", | 5451 | DEFVAR_BUFFER_DEFAULTS ("default-fill-column", |
| 5452 | fill_column, | 5452 | fill_column, |
| 5453 | doc: /* Default value of `fill-column' for buffers that do not override it. | 5453 | doc: /* Default value of `fill-column' for buffers that do not override it. |
| 5454 | This is the same as (default-value 'fill-column). */); | 5454 | This is the same as (default-value \\='fill-column). */); |
| 5455 | 5455 | ||
| 5456 | DEFVAR_BUFFER_DEFAULTS ("default-left-margin", | 5456 | DEFVAR_BUFFER_DEFAULTS ("default-left-margin", |
| 5457 | left_margin, | 5457 | left_margin, |
| 5458 | doc: /* Default value of `left-margin' for buffers that do not override it. | 5458 | doc: /* Default value of `left-margin' for buffers that do not override it. |
| 5459 | This is the same as (default-value 'left-margin). */); | 5459 | This is the same as (default-value \\='left-margin). */); |
| 5460 | 5460 | ||
| 5461 | DEFVAR_BUFFER_DEFAULTS ("default-tab-width", | 5461 | DEFVAR_BUFFER_DEFAULTS ("default-tab-width", |
| 5462 | tab_width, | 5462 | tab_width, |
| 5463 | doc: /* Default value of `tab-width' for buffers that do not override it. | 5463 | doc: /* Default value of `tab-width' for buffers that do not override it. |
| 5464 | NOTE: This controls the display width of a TAB character, and not | 5464 | NOTE: This controls the display width of a TAB character, and not |
| 5465 | the size of an indentation step. | 5465 | the size of an indentation step. |
| 5466 | This is the same as (default-value 'tab-width). */); | 5466 | This is the same as (default-value \\='tab-width). */); |
| 5467 | 5467 | ||
| 5468 | DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search", | 5468 | DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search", |
| 5469 | case_fold_search, | 5469 | case_fold_search, |
| 5470 | doc: /* Default value of `case-fold-search' for buffers that don't override it. | 5470 | doc: /* Default value of `case-fold-search' for buffers that don't override it. |
| 5471 | This is the same as (default-value 'case-fold-search). */); | 5471 | This is the same as (default-value \\='case-fold-search). */); |
| 5472 | 5472 | ||
| 5473 | DEFVAR_BUFFER_DEFAULTS ("default-left-margin-width", | 5473 | DEFVAR_BUFFER_DEFAULTS ("default-left-margin-width", |
| 5474 | left_margin_cols, | 5474 | left_margin_cols, |
| 5475 | doc: /* Default value of `left-margin-width' for buffers that don't override it. | 5475 | doc: /* Default value of `left-margin-width' for buffers that don't override it. |
| 5476 | This is the same as (default-value 'left-margin-width). */); | 5476 | This is the same as (default-value \\='left-margin-width). */); |
| 5477 | 5477 | ||
| 5478 | DEFVAR_BUFFER_DEFAULTS ("default-right-margin-width", | 5478 | DEFVAR_BUFFER_DEFAULTS ("default-right-margin-width", |
| 5479 | right_margin_cols, | 5479 | right_margin_cols, |
| 5480 | doc: /* Default value of `right-margin-width' for buffers that don't override it. | 5480 | doc: /* Default value of `right-margin-width' for buffers that don't override it. |
| 5481 | This is the same as (default-value 'right-margin-width). */); | 5481 | This is the same as (default-value \\='right-margin-width). */); |
| 5482 | 5482 | ||
| 5483 | DEFVAR_BUFFER_DEFAULTS ("default-left-fringe-width", | 5483 | DEFVAR_BUFFER_DEFAULTS ("default-left-fringe-width", |
| 5484 | left_fringe_width, | 5484 | left_fringe_width, |
| 5485 | doc: /* Default value of `left-fringe-width' for buffers that don't override it. | 5485 | doc: /* Default value of `left-fringe-width' for buffers that don't override it. |
| 5486 | This is the same as (default-value 'left-fringe-width). */); | 5486 | This is the same as (default-value \\='left-fringe-width). */); |
| 5487 | 5487 | ||
| 5488 | DEFVAR_BUFFER_DEFAULTS ("default-right-fringe-width", | 5488 | DEFVAR_BUFFER_DEFAULTS ("default-right-fringe-width", |
| 5489 | right_fringe_width, | 5489 | right_fringe_width, |
| 5490 | doc: /* Default value of `right-fringe-width' for buffers that don't override it. | 5490 | doc: /* Default value of `right-fringe-width' for buffers that don't override it. |
| 5491 | This is the same as (default-value 'right-fringe-width). */); | 5491 | This is the same as (default-value \\='right-fringe-width). */); |
| 5492 | 5492 | ||
| 5493 | DEFVAR_BUFFER_DEFAULTS ("default-fringes-outside-margins", | 5493 | DEFVAR_BUFFER_DEFAULTS ("default-fringes-outside-margins", |
| 5494 | fringes_outside_margins, | 5494 | fringes_outside_margins, |
| 5495 | doc: /* Default value of `fringes-outside-margins' for buffers that don't override it. | 5495 | doc: /* Default value of `fringes-outside-margins' for buffers that don't override it. |
| 5496 | This is the same as (default-value 'fringes-outside-margins). */); | 5496 | This is the same as (default-value \\='fringes-outside-margins). */); |
| 5497 | 5497 | ||
| 5498 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-bar-width", | 5498 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-bar-width", |
| 5499 | scroll_bar_width, | 5499 | scroll_bar_width, |
| 5500 | doc: /* Default value of `scroll-bar-width' for buffers that don't override it. | 5500 | doc: /* Default value of `scroll-bar-width' for buffers that don't override it. |
| 5501 | This is the same as (default-value 'scroll-bar-width). */); | 5501 | This is the same as (default-value \\='scroll-bar-width). */); |
| 5502 | 5502 | ||
| 5503 | DEFVAR_BUFFER_DEFAULTS ("default-vertical-scroll-bar", | 5503 | DEFVAR_BUFFER_DEFAULTS ("default-vertical-scroll-bar", |
| 5504 | vertical_scroll_bar_type, | 5504 | vertical_scroll_bar_type, |
| 5505 | doc: /* Default value of `vertical-scroll-bar' for buffers that don't override it. | 5505 | doc: /* Default value of `vertical-scroll-bar' for buffers that don't override it. |
| 5506 | This is the same as (default-value 'vertical-scroll-bar). */); | 5506 | This is the same as (default-value \\='vertical-scroll-bar). */); |
| 5507 | 5507 | ||
| 5508 | DEFVAR_BUFFER_DEFAULTS ("default-indicate-empty-lines", | 5508 | DEFVAR_BUFFER_DEFAULTS ("default-indicate-empty-lines", |
| 5509 | indicate_empty_lines, | 5509 | indicate_empty_lines, |
| 5510 | doc: /* Default value of `indicate-empty-lines' for buffers that don't override it. | 5510 | doc: /* Default value of `indicate-empty-lines' for buffers that don't override it. |
| 5511 | This is the same as (default-value 'indicate-empty-lines). */); | 5511 | This is the same as (default-value \\='indicate-empty-lines). */); |
| 5512 | 5512 | ||
| 5513 | DEFVAR_BUFFER_DEFAULTS ("default-indicate-buffer-boundaries", | 5513 | DEFVAR_BUFFER_DEFAULTS ("default-indicate-buffer-boundaries", |
| 5514 | indicate_buffer_boundaries, | 5514 | indicate_buffer_boundaries, |
| 5515 | doc: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it. | 5515 | doc: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it. |
| 5516 | This is the same as (default-value 'indicate-buffer-boundaries). */); | 5516 | This is the same as (default-value \\='indicate-buffer-boundaries). */); |
| 5517 | 5517 | ||
| 5518 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", | 5518 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", |
| 5519 | fringe_indicator_alist, | 5519 | fringe_indicator_alist, |
| 5520 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. | 5520 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. |
| 5521 | This is the same as (default-value 'fringe-indicator-alist). */); | 5521 | This is the same as (default-value \\='fringe-indicator-alist). */); |
| 5522 | 5522 | ||
| 5523 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", | 5523 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", |
| 5524 | fringe_cursor_alist, | 5524 | fringe_cursor_alist, |
| 5525 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. | 5525 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. |
| 5526 | This is the same as (default-value 'fringe-cursor-alist). */); | 5526 | This is the same as (default-value \\='fringe-cursor-alist). */); |
| 5527 | 5527 | ||
| 5528 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", | 5528 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", |
| 5529 | scroll_up_aggressively, | 5529 | scroll_up_aggressively, |
| 5530 | doc: /* Default value of `scroll-up-aggressively'. | 5530 | doc: /* Default value of `scroll-up-aggressively'. |
| 5531 | This value applies in buffers that don't have their own local values. | 5531 | This value applies in buffers that don't have their own local values. |
| 5532 | This is the same as (default-value 'scroll-up-aggressively). */); | 5532 | This is the same as (default-value \\='scroll-up-aggressively). */); |
| 5533 | 5533 | ||
| 5534 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-down-aggressively", | 5534 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-down-aggressively", |
| 5535 | scroll_down_aggressively, | 5535 | scroll_down_aggressively, |
| 5536 | doc: /* Default value of `scroll-down-aggressively'. | 5536 | doc: /* Default value of `scroll-down-aggressively'. |
| 5537 | This value applies in buffers that don't have their own local values. | 5537 | This value applies in buffers that don't have their own local values. |
| 5538 | This is the same as (default-value 'scroll-down-aggressively). */); | 5538 | This is the same as (default-value \\='scroll-down-aggressively). */); |
| 5539 | 5539 | ||
| 5540 | DEFVAR_PER_BUFFER ("header-line-format", | 5540 | DEFVAR_PER_BUFFER ("header-line-format", |
| 5541 | &BVAR (current_buffer, header_line_format), | 5541 | &BVAR (current_buffer, header_line_format), |
diff --git a/src/data.c b/src/data.c index 784d127f18a..88c5a309859 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1668,7 +1668,7 @@ this function causes a local value to exist for this buffer, | |||
| 1668 | just as setting the variable would do. | 1668 | just as setting the variable would do. |
| 1669 | 1669 | ||
| 1670 | This function returns VARIABLE, and therefore | 1670 | This function returns VARIABLE, and therefore |
| 1671 | (set (make-local-variable 'VARIABLE) VALUE-EXP) | 1671 | (set (make-local-variable \\='VARIABLE) VALUE-EXP) |
| 1672 | works. | 1672 | works. |
| 1673 | 1673 | ||
| 1674 | See also `make-variable-buffer-local'. | 1674 | See also `make-variable-buffer-local'. |
diff --git a/src/dired.c b/src/dired.c index e70f136d0cc..97736673f5d 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -816,7 +816,7 @@ DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0, | |||
| 816 | Value is nil if specified file cannot be opened. | 816 | Value is nil if specified file cannot be opened. |
| 817 | 817 | ||
| 818 | ID-FORMAT specifies the preferred format of attributes uid and gid (see | 818 | ID-FORMAT specifies the preferred format of attributes uid and gid (see |
| 819 | below) - valid values are 'string and 'integer. The latter is the | 819 | below) - valid values are `string' and `integer'. The latter is the |
| 820 | default, but we plan to change that, so you should specify a non-nil value | 820 | default, but we plan to change that, so you should specify a non-nil value |
| 821 | for ID-FORMAT if you use the returned uid or gid. | 821 | for ID-FORMAT if you use the returned uid or gid. |
| 822 | 822 | ||
diff --git a/src/editfns.c b/src/editfns.c index a85c9e79d4e..e7d5dd89e51 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2156,7 +2156,7 @@ applied without consideration for daylight saving time. | |||
| 2156 | You can pass more than 7 arguments; then the first six arguments | 2156 | You can pass more than 7 arguments; then the first six arguments |
| 2157 | are used as SECOND through YEAR, and the *last* argument is used as ZONE. | 2157 | are used as SECOND through YEAR, and the *last* argument is used as ZONE. |
| 2158 | The intervening arguments are ignored. | 2158 | The intervening arguments are ignored. |
| 2159 | This feature lets (apply 'encode-time (decode-time ...)) work. | 2159 | This feature lets (apply \\='encode-time (decode-time ...)) work. |
| 2160 | 2160 | ||
| 2161 | Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed; | 2161 | Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed; |
| 2162 | for example, a DAY of 0 means the day preceding the given month. | 2162 | for example, a DAY of 0 means the day preceding the given month. |
diff --git a/src/eval.c b/src/eval.c index 6fde7e30b7f..77d435acbe6 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -517,7 +517,7 @@ DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0, | |||
| 517 | Warning: `quote' does not construct its return value, but just returns | 517 | Warning: `quote' does not construct its return value, but just returns |
| 518 | the value that was pre-constructed by the Lisp reader (see info node | 518 | the value that was pre-constructed by the Lisp reader (see info node |
| 519 | `(elisp)Printed Representation'). | 519 | `(elisp)Printed Representation'). |
| 520 | This means that '(a . b) is not identical to (cons 'a 'b): the former | 520 | This means that \\='(a . b) is not identical to (cons \\='a \\='b): the former |
| 521 | does not cons. Quoting should be reserved for constants that will | 521 | does not cons. Quoting should be reserved for constants that will |
| 522 | never be modified by side-effects, unless you like self-modifying code. | 522 | never be modified by side-effects, unless you like self-modifying code. |
| 523 | See the common pitfall in info node `(elisp)Rearrangement' for an example | 523 | See the common pitfall in info node `(elisp)Rearrangement' for an example |
| @@ -2196,7 +2196,7 @@ eval_sub (Lisp_Object form) | |||
| 2196 | DEFUN ("apply", Fapply, Sapply, 1, MANY, 0, | 2196 | DEFUN ("apply", Fapply, Sapply, 1, MANY, 0, |
| 2197 | doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. | 2197 | doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. |
| 2198 | Then return the value FUNCTION returns. | 2198 | Then return the value FUNCTION returns. |
| 2199 | Thus, (apply '+ 1 2 '(3 4)) returns 10. | 2199 | Thus, (apply \\='+ 1 2 \\='(3 4)) returns 10. |
| 2200 | usage: (apply FUNCTION &rest ARGUMENTS) */) | 2200 | usage: (apply FUNCTION &rest ARGUMENTS) */) |
| 2201 | (ptrdiff_t nargs, Lisp_Object *args) | 2201 | (ptrdiff_t nargs, Lisp_Object *args) |
| 2202 | { | 2202 | { |
| @@ -2557,7 +2557,7 @@ DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0, | |||
| 2557 | DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, | 2557 | DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
| 2558 | doc: /* Call first argument as a function, passing remaining arguments to it. | 2558 | doc: /* Call first argument as a function, passing remaining arguments to it. |
| 2559 | Return the value that function returns. | 2559 | Return the value that function returns. |
| 2560 | Thus, (funcall 'cons 'x 'y) returns (x . y). | 2560 | Thus, (funcall \\='cons \\='x \\='y) returns (x . y). |
| 2561 | usage: (funcall FUNCTION &rest ARGUMENTS) */) | 2561 | usage: (funcall FUNCTION &rest ARGUMENTS) */) |
| 2562 | (ptrdiff_t nargs, Lisp_Object *args) | 2562 | (ptrdiff_t nargs, Lisp_Object *args) |
| 2563 | { | 2563 | { |
diff --git a/src/fileio.c b/src/fileio.c index a36dfbcfa36..d4341f8fa59 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5878,7 +5878,7 @@ the arguments that were passed to that primitive. For example, if you | |||
| 5878 | do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then | 5878 | do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then |
| 5879 | HANDLER is called like this: | 5879 | HANDLER is called like this: |
| 5880 | 5880 | ||
| 5881 | (funcall HANDLER 'file-exists-p FILENAME) | 5881 | (funcall HANDLER \\='file-exists-p FILENAME) |
| 5882 | 5882 | ||
| 5883 | Note that HANDLER must be able to handle all I/O primitives; if it has | 5883 | Note that HANDLER must be able to handle all I/O primitives; if it has |
| 5884 | nothing special to do for a primitive, it should reinvoke the | 5884 | nothing special to do for a primitive, it should reinvoke the |
| @@ -347,7 +347,7 @@ This function obeys the conventions for collation order in your | |||
| 347 | locale settings. For example, punctuation and whitespace characters | 347 | locale settings. For example, punctuation and whitespace characters |
| 348 | might be considered less significant for sorting: | 348 | might be considered less significant for sorting: |
| 349 | 349 | ||
| 350 | \(sort '\("11" "12" "1 1" "1 2" "1.1" "1.2") 'string-collate-lessp) | 350 | \(sort '\("11" "12" "1 1" "1 2" "1.1" "1.2") \\='string-collate-lessp) |
| 351 | => \("11" "1 1" "1.1" "12" "1 2" "1.2") | 351 | => \("11" "1 1" "1.1" "12" "1 2" "1.2") |
| 352 | 352 | ||
| 353 | The optional argument LOCALE, a string, overrides the setting of your | 353 | The optional argument LOCALE, a string, overrides the setting of your |
| @@ -1083,7 +1083,7 @@ multibyte character of charset `eight-bit'. | |||
| 1083 | See also `string-to-multibyte'. | 1083 | See also `string-to-multibyte'. |
| 1084 | 1084 | ||
| 1085 | Beware, this often doesn't really do what you think it does. | 1085 | Beware, this often doesn't really do what you think it does. |
| 1086 | It is similar to (decode-coding-string STRING 'utf-8-emacs). | 1086 | It is similar to (decode-coding-string STRING \\='utf-8-emacs). |
| 1087 | If you're not sure, whether to use `string-as-multibyte' or | 1087 | If you're not sure, whether to use `string-as-multibyte' or |
| 1088 | `string-to-multibyte', use `string-to-multibyte'. */) | 1088 | `string-to-multibyte', use `string-to-multibyte'. */) |
| 1089 | (Lisp_Object string) | 1089 | (Lisp_Object string) |
diff --git a/src/frame.c b/src/frame.c index d3e478075c3..6debcb8e7bc 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -976,7 +976,7 @@ except when you want to create a new frame on another terminal. | |||
| 976 | In that case, the `tty' parameter specifies the device file to open, | 976 | In that case, the `tty' parameter specifies the device file to open, |
| 977 | and the `tty-type' parameter specifies the terminal type. Example: | 977 | and the `tty-type' parameter specifies the terminal type. Example: |
| 978 | 978 | ||
| 979 | (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm"))) | 979 | (make-terminal-frame \\='((tty . "/dev/pts/5") (tty-type . "xterm"))) |
| 980 | 980 | ||
| 981 | Note that changing the size of one terminal frame automatically | 981 | Note that changing the size of one terminal frame automatically |
| 982 | affects all frames on the same terminal device. */) | 982 | affects all frames on the same terminal device. */) |
| @@ -5018,7 +5018,7 @@ You can also use a floating number between 0.0 and 1.0. */); | |||
| 5018 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, | 5018 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, |
| 5019 | doc: /* Alist of default values for frame creation. | 5019 | doc: /* Alist of default values for frame creation. |
| 5020 | These may be set in your init file, like this: | 5020 | These may be set in your init file, like this: |
| 5021 | (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))) | 5021 | (setq default-frame-alist \\='((width . 80) (height . 55) (menu-bar-lines . 1))) |
| 5022 | These override values given in window system configuration data, | 5022 | These override values given in window system configuration data, |
| 5023 | including X Windows' defaults database. | 5023 | including X Windows' defaults database. |
| 5024 | For values specific to the first Emacs frame, see `initial-frame-alist'. | 5024 | For values specific to the first Emacs frame, see `initial-frame-alist'. |
| @@ -5176,7 +5176,7 @@ width by the width of one scroll bar provided this option is nil and | |||
| 5176 | keep it unchanged if this option is either t or a list containing | 5176 | keep it unchanged if this option is either t or a list containing |
| 5177 | `vertical-scroll-bars'. | 5177 | `vertical-scroll-bars'. |
| 5178 | 5178 | ||
| 5179 | The default value is '(tool-bar-lines) on Lucid, Motif and Windows | 5179 | The default value is \\='(tool-bar-lines) on Lucid, Motif and Windows |
| 5180 | \(which means that adding/removing a tool bar does not change the frame | 5180 | \(which means that adding/removing a tool bar does not change the frame |
| 5181 | height), nil on all other window systems including GTK+ (which means | 5181 | height), nil on all other window systems including GTK+ (which means |
| 5182 | that changing any of the parameters listed above may change the size of | 5182 | that changing any of the parameters listed above may change the size of |
diff --git a/src/image.c b/src/image.c index 743d230ed3b..85cf801f6a9 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -9752,7 +9752,7 @@ syms_of_image (void) | |||
| 9752 | defining the supported image types. */ | 9752 | defining the supported image types. */ |
| 9753 | DEFVAR_LISP ("image-types", Vimage_types, | 9753 | DEFVAR_LISP ("image-types", Vimage_types, |
| 9754 | doc: /* List of potentially supported image types. | 9754 | doc: /* List of potentially supported image types. |
| 9755 | Each element of the list is a symbol for an image type, like 'jpeg or 'png. | 9755 | Each element of the list is a symbol for an image type, like `jpeg' or `png'. |
| 9756 | To check whether it is really supported, use `image-type-available-p'. */); | 9756 | To check whether it is really supported, use `image-type-available-p'. */); |
| 9757 | Vimage_types = Qnil; | 9757 | Vimage_types = Qnil; |
| 9758 | 9758 | ||
diff --git a/src/keyboard.c b/src/keyboard.c index dab32b12826..d7a533b80b7 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -754,7 +754,7 @@ force_auto_save_soon (void) | |||
| 754 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | 754 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", |
| 755 | doc: /* Invoke the editor command loop recursively. | 755 | doc: /* Invoke the editor command loop recursively. |
| 756 | To get out of the recursive edit, a command can throw to ‘exit’ -- for | 756 | To get out of the recursive edit, a command can throw to ‘exit’ -- for |
| 757 | instance ‘(throw 'exit nil)’. | 757 | instance ‘(throw \\='exit nil)’. |
| 758 | If you throw a value other than t, ‘recursive-edit’ returns normally | 758 | If you throw a value other than t, ‘recursive-edit’ returns normally |
| 759 | to the function that called it. Throwing a t value causes | 759 | to the function that called it. Throwing a t value causes |
| 760 | ‘recursive-edit’ to quit, so that control returns to the command loop | 760 | ‘recursive-edit’ to quit, so that control returns to the command loop |
diff --git a/src/print.c b/src/print.c index d3b1a927b22..94f3fcd7db1 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2212,7 +2212,7 @@ This affects only `prin1'. */); | |||
| 2212 | 2212 | ||
| 2213 | DEFVAR_BOOL ("print-quoted", print_quoted, | 2213 | DEFVAR_BOOL ("print-quoted", print_quoted, |
| 2214 | doc: /* Non-nil means print quoted forms with reader syntax. | 2214 | doc: /* Non-nil means print quoted forms with reader syntax. |
| 2215 | I.e., (quote foo) prints as 'foo, (function foo) as #'foo. */); | 2215 | I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); |
| 2216 | print_quoted = 0; | 2216 | print_quoted = 0; |
| 2217 | 2217 | ||
| 2218 | DEFVAR_LISP ("print-gensym", Vprint_gensym, | 2218 | DEFVAR_LISP ("print-gensym", Vprint_gensym, |
diff --git a/src/process.c b/src/process.c index 17e9187aa65..1ab83780914 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2685,7 +2685,7 @@ Examples: | |||
| 2685 | \(serial-process-configure :process "/dev/ttyS0" :speed 1200) | 2685 | \(serial-process-configure :process "/dev/ttyS0" :speed 1200) |
| 2686 | 2686 | ||
| 2687 | \(serial-process-configure | 2687 | \(serial-process-configure |
| 2688 | :buffer "COM1" :stopbits 1 :parity 'odd :flowcontrol 'hw) | 2688 | :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw) |
| 2689 | 2689 | ||
| 2690 | \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7) | 2690 | \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7) |
| 2691 | 2691 | ||
| @@ -2785,7 +2785,7 @@ Examples: | |||
| 2785 | 2785 | ||
| 2786 | \(make-serial-process :port "COM1" :speed 115200 :stopbits 2) | 2786 | \(make-serial-process :port "COM1" :speed 115200 :stopbits 2) |
| 2787 | 2787 | ||
| 2788 | \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity 'odd) | 2788 | \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd) |
| 2789 | 2789 | ||
| 2790 | \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) | 2790 | \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) |
| 2791 | 2791 | ||
diff --git a/src/w32fns.c b/src/w32fns.c index f279fb86c2f..d8e22e2aa9c 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -5782,8 +5782,8 @@ Internal use only, use `display-monitor-attributes-list' instead. */) | |||
| 5782 | 5782 | ||
| 5783 | DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0, | 5783 | DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0, |
| 5784 | doc: /* Set the sound generated when the bell is rung. | 5784 | doc: /* Set the sound generated when the bell is rung. |
| 5785 | SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent | 5785 | SOUND is `asterisk', `exclamation', `hand', `question', `ok', or `silent' |
| 5786 | to use the corresponding system sound for the bell. The 'silent sound | 5786 | to use the corresponding system sound for the bell. The `silent' sound |
| 5787 | prevents Emacs from making any sound at all. | 5787 | prevents Emacs from making any sound at all. |
| 5788 | SOUND is nil to use the normal beep. */) | 5788 | SOUND is nil to use the normal beep. */) |
| 5789 | (Lisp_Object sound) | 5789 | (Lisp_Object sound) |
diff --git a/src/xfaces.c b/src/xfaces.c index 556f361c10d..d89adca8c57 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -6506,8 +6506,8 @@ If this variable is made buffer-local, the face remapping takes effect | |||
| 6506 | only in that buffer. For instance, the mode my-mode could define a | 6506 | only in that buffer. For instance, the mode my-mode could define a |
| 6507 | face `my-mode-default', and then in the mode setup function, do: | 6507 | face `my-mode-default', and then in the mode setup function, do: |
| 6508 | 6508 | ||
| 6509 | (set (make-local-variable 'face-remapping-alist) | 6509 | (set (make-local-variable \\='face-remapping-alist) |
| 6510 | '((default my-mode-default)))). | 6510 | \\='((default my-mode-default)))). |
| 6511 | 6511 | ||
| 6512 | Because Emacs normally only redraws screen areas when the underlying | 6512 | Because Emacs normally only redraws screen areas when the underlying |
| 6513 | buffer contents change, you may need to call `redraw-display' after | 6513 | buffer contents change, you may need to call `redraw-display' after |