diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 36 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/help.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 14 | ||||
| -rw-r--r-- | doc/lispref/os.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/strings.texi | 16 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/tips.texi | 8 | ||||
| -rw-r--r-- | doc/misc/ede.texi | 6 | ||||
| -rw-r--r-- | doc/misc/efaq.texi | 2 | ||||
| -rw-r--r-- | doc/misc/eieio.texi | 2 | ||||
| -rw-r--r-- | doc/misc/gnus-faq.texi | 8 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 6 | ||||
| -rw-r--r-- | doc/misc/rcirc.texi | 2 |
16 files changed, 59 insertions, 59 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 5ad5f267857..d353241c34a 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -9268,7 +9268,7 @@ documentation string. For example: | |||
| 9268 | @smallexample | 9268 | @smallexample |
| 9269 | @group | 9269 | @group |
| 9270 | (defvar shell-command-default-error-buffer nil | 9270 | (defvar shell-command-default-error-buffer nil |
| 9271 | "*Buffer name for ‘shell-command’ @dots{} error output. | 9271 | "*Buffer name for `shell-command' @dots{} error output. |
| 9272 | @dots{} ") | 9272 | @dots{} ") |
| 9273 | @end group | 9273 | @end group |
| 9274 | @end smallexample | 9274 | @end smallexample |
| @@ -11107,7 +11107,7 @@ up the number of pebbles in a triangle. | |||
| 11107 | @smallexample | 11107 | @smallexample |
| 11108 | @group | 11108 | @group |
| 11109 | (defun triangle-using-dotimes (number-of-rows) | 11109 | (defun triangle-using-dotimes (number-of-rows) |
| 11110 | "Using ‘dotimes’, add up the number of pebbles in a triangle." | 11110 | "Using `dotimes', add up the number of pebbles in a triangle." |
| 11111 | (let ((total 0)) ; otherwise a total is a void variable | 11111 | (let ((total 0)) ; otherwise a total is a void variable |
| 11112 | (dotimes (number number-of-rows total) | 11112 | (dotimes (number number-of-rows total) |
| 11113 | (setq total (+ total (1+ number)))))) | 11113 | (setq total (+ total (1+ number)))))) |
| @@ -13514,8 +13514,8 @@ For example: | |||
| 13514 | @smallexample | 13514 | @smallexample |
| 13515 | @group | 13515 | @group |
| 13516 | (let* ((foo 7) | 13516 | (let* ((foo 7) |
| 13517 | (bar (* 3 foo))) | 13517 | (bar (* 3 foo))) |
| 13518 | (message "‘bar’ is %d." bar)) | 13518 | (message "`bar' is %d." bar)) |
| 13519 | @result{} ‘bar’ is 21. | 13519 | @result{} ‘bar’ is 21. |
| 13520 | @end group | 13520 | @end group |
| 13521 | @end smallexample | 13521 | @end smallexample |
| @@ -13758,7 +13758,7 @@ All this leads to the following function definition: | |||
| 13758 | "Print number of words in the region. | 13758 | "Print number of words in the region. |
| 13759 | Words are defined as at least one word-constituent | 13759 | Words are defined as at least one word-constituent |
| 13760 | character followed by at least one character that | 13760 | character followed by at least one character that |
| 13761 | is not a word-constituent. The buffer’s syntax | 13761 | is not a word-constituent. The buffer's syntax |
| 13762 | table determines which characters these are." | 13762 | table determines which characters these are." |
| 13763 | (interactive "r") | 13763 | (interactive "r") |
| 13764 | (message "Counting words in region ... ") | 13764 | (message "Counting words in region ... ") |
| @@ -13825,7 +13825,7 @@ parenthesis and type @kbd{C-x C-e} to install it. | |||
| 13825 | (defun @value{COUNT-WORDS} (beginning end) | 13825 | (defun @value{COUNT-WORDS} (beginning end) |
| 13826 | "Print number of words in the region. | 13826 | "Print number of words in the region. |
| 13827 | Words are defined as at least one word-constituent character followed | 13827 | Words are defined as at least one word-constituent character followed |
| 13828 | by at least one character that is not a word-constituent. The buffer’s | 13828 | by at least one character that is not a word-constituent. The buffer's |
| 13829 | syntax table determines which characters these are." | 13829 | syntax table determines which characters these are." |
| 13830 | @end group | 13830 | @end group |
| 13831 | @group | 13831 | @group |
| @@ -14987,13 +14987,13 @@ beginning of the file. The function definition looks like this: | |||
| 14987 | @smallexample | 14987 | @smallexample |
| 14988 | @group | 14988 | @group |
| 14989 | (defun lengths-list-file (filename) | 14989 | (defun lengths-list-file (filename) |
| 14990 | "Return list of definitions’ lengths within FILE. | 14990 | "Return list of definitions' lengths within FILE. |
| 14991 | The returned list is a list of numbers. | 14991 | The returned list is a list of numbers. |
| 14992 | Each number is the number of words or | 14992 | Each number is the number of words or |
| 14993 | symbols in one function definition." | 14993 | symbols in one function definition." |
| 14994 | @end group | 14994 | @end group |
| 14995 | @group | 14995 | @group |
| 14996 | (message "Working on ‘%s’ ... " filename) | 14996 | (message "Working on `%s' ... " filename) |
| 14997 | (save-excursion | 14997 | (save-excursion |
| 14998 | (let ((buffer (find-file-noselect filename)) | 14998 | (let ((buffer (find-file-noselect filename)) |
| 14999 | (lengths-list)) | 14999 | (lengths-list)) |
| @@ -15759,7 +15759,7 @@ simpler to write a list manually. Here it is: | |||
| 15759 | 160 170 180 190 200 | 15759 | 160 170 180 190 200 |
| 15760 | 210 220 230 240 250 | 15760 | 210 220 230 240 250 |
| 15761 | 260 270 280 290 300) | 15761 | 260 270 280 290 300) |
| 15762 | "List specifying ranges for ‘defuns-per-range’.") | 15762 | "List specifying ranges for `defuns-per-range'.") |
| 15763 | @end group | 15763 | @end group |
| 15764 | @end smallexample | 15764 | @end smallexample |
| 15765 | 15765 | ||
| @@ -19943,7 +19943,7 @@ row, and the value of the width of the top line, which is calculated | |||
| 19943 | @group | 19943 | @group |
| 19944 | (defun Y-axis-element (number full-Y-label-width) | 19944 | (defun Y-axis-element (number full-Y-label-width) |
| 19945 | "Construct a NUMBERed label element. | 19945 | "Construct a NUMBERed label element. |
| 19946 | A numbered element looks like this ‘ 5 - ’, | 19946 | A numbered element looks like this ` 5 - ', |
| 19947 | and is padded as needed so all line up with | 19947 | and is padded as needed so all line up with |
| 19948 | the element for the largest number." | 19948 | the element for the largest number." |
| 19949 | @end group | 19949 | @end group |
| @@ -20044,7 +20044,7 @@ the @code{print-Y-axis} function, which inserts the list as a column. | |||
| 20044 | Height must be the maximum height of the graph. | 20044 | Height must be the maximum height of the graph. |
| 20045 | Full width is the width of the highest label element." | 20045 | Full width is the width of the highest label element." |
| 20046 | ;; Value of height and full-Y-label-width | 20046 | ;; Value of height and full-Y-label-width |
| 20047 | ;; are passed by ‘print-graph’. | 20047 | ;; are passed by print-graph. |
| 20048 | @end group | 20048 | @end group |
| 20049 | @group | 20049 | @group |
| 20050 | (let ((start (point))) | 20050 | (let ((start (point))) |
| @@ -21169,7 +21169,7 @@ each column." | |||
| 21169 | @end group | 21169 | @end group |
| 21170 | @group | 21170 | @group |
| 21171 | ;; Value of symbol-width and full-Y-label-width | 21171 | ;; Value of symbol-width and full-Y-label-width |
| 21172 | ;; are passed by ‘print-graph’. | 21172 | ;; are passed by print-graph. |
| 21173 | (let* ((leading-spaces | 21173 | (let* ((leading-spaces |
| 21174 | (make-string full-Y-label-width ? )) | 21174 | (make-string full-Y-label-width ? )) |
| 21175 | ;; symbol-width @r{is provided by} graph-body-print | 21175 | ;; symbol-width @r{is provided by} graph-body-print |
| @@ -21269,7 +21269,7 @@ Here are all the graphing definitions in their final form: | |||
| 21269 | 110 120 130 140 150 | 21269 | 110 120 130 140 150 |
| 21270 | 160 170 180 190 200 | 21270 | 160 170 180 190 200 |
| 21271 | 210 220 230 240 250) | 21271 | 210 220 230 240 250) |
| 21272 | "List specifying ranges for ‘defuns-per-range’.") | 21272 | "List specifying ranges for `defuns-per-range'.") |
| 21273 | @end group | 21273 | @end group |
| 21274 | 21274 | ||
| 21275 | @group | 21275 | @group |
| @@ -21330,14 +21330,14 @@ as graph-symbol.") | |||
| 21330 | @smallexample | 21330 | @smallexample |
| 21331 | @group | 21331 | @group |
| 21332 | (defun lengths-list-file (filename) | 21332 | (defun lengths-list-file (filename) |
| 21333 | "Return list of definitions’ lengths within FILE. | 21333 | "Return list of definitions' lengths within FILE. |
| 21334 | The returned list is a list of numbers. | 21334 | The returned list is a list of numbers. |
| 21335 | Each number is the number of words or | 21335 | Each number is the number of words or |
| 21336 | symbols in one function definition." | 21336 | symbols in one function definition." |
| 21337 | @end group | 21337 | @end group |
| 21338 | 21338 | ||
| 21339 | @group | 21339 | @group |
| 21340 | (message "Working on ‘%s’ ... " filename) | 21340 | (message "Working on `%s' ... " filename) |
| 21341 | (save-excursion | 21341 | (save-excursion |
| 21342 | (let ((buffer (find-file-noselect filename)) | 21342 | (let ((buffer (find-file-noselect filename)) |
| 21343 | (lengths-list)) | 21343 | (lengths-list)) |
| @@ -21467,7 +21467,7 @@ The strings are either graph-blank or graph-symbol." | |||
| 21467 | @group | 21467 | @group |
| 21468 | (defun Y-axis-element (number full-Y-label-width) | 21468 | (defun Y-axis-element (number full-Y-label-width) |
| 21469 | "Construct a NUMBERed label element. | 21469 | "Construct a NUMBERed label element. |
| 21470 | A numbered element looks like this ‘ 5 - ’, | 21470 | A numbered element looks like this ` 5 - ', |
| 21471 | and is padded as needed so all line up with | 21471 | and is padded as needed so all line up with |
| 21472 | the element for the largest number." | 21472 | the element for the largest number." |
| 21473 | @end group | 21473 | @end group |
| @@ -21497,7 +21497,7 @@ Optionally, print according to VERTICAL-STEP." | |||
| 21497 | @end group | 21497 | @end group |
| 21498 | @group | 21498 | @group |
| 21499 | ;; Value of height and full-Y-label-width | 21499 | ;; Value of height and full-Y-label-width |
| 21500 | ;; are passed by ‘print-graph’. | 21500 | ;; are passed by 'print-graph'. |
| 21501 | (let ((start (point))) | 21501 | (let ((start (point))) |
| 21502 | (insert-rectangle | 21502 | (insert-rectangle |
| 21503 | (Y-axis-column height full-Y-label-width vertical-step)) | 21503 | (Y-axis-column height full-Y-label-width vertical-step)) |
| @@ -21662,7 +21662,7 @@ each column." | |||
| 21662 | @end group | 21662 | @end group |
| 21663 | @group | 21663 | @group |
| 21664 | ;; Value of symbol-width and full-Y-label-width | 21664 | ;; Value of symbol-width and full-Y-label-width |
| 21665 | ;; are passed by ‘print-graph’. | 21665 | ;; are passed by 'print-graph'. |
| 21666 | (let* ((leading-spaces | 21666 | (let* ((leading-spaces |
| 21667 | (make-string full-Y-label-width ? )) | 21667 | (make-string full-Y-label-width ? )) |
| 21668 | ;; symbol-width @r{is provided by} graph-body-print | 21668 | ;; symbol-width @r{is provided by} graph-body-print |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 29d1bd588e3..421f5cc530f 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -315,7 +315,7 @@ between a few different constant values: | |||
| 315 | @example | 315 | @example |
| 316 | (pcase (get-return-code x) | 316 | (pcase (get-return-code x) |
| 317 | (`success (message "Done!")) | 317 | (`success (message "Done!")) |
| 318 | (`would-block (message "Sorry, can’t do it now")) | 318 | (`would-block (message "Sorry, can't do it now")) |
| 319 | (`read-only (message "The shmliblick is read-only")) | 319 | (`read-only (message "The shmliblick is read-only")) |
| 320 | (`access-denied (message "You do not have the needed rights")) | 320 | (`access-denied (message "You do not have the needed rights")) |
| 321 | (code (message "Unknown return code %S" code))) | 321 | (code (message "Unknown return code %S" code))) |
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 20eaf5dee1e..a853d2fbab5 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1561,7 +1561,7 @@ Around advice such as: | |||
| 1561 | 1561 | ||
| 1562 | @example | 1562 | @example |
| 1563 | (defadvice foo (around foo-around) | 1563 | (defadvice foo (around foo-around) |
| 1564 | "Ignore case in ‘foo’." | 1564 | "Ignore case in `foo'." |
| 1565 | (let ((case-fold-search t)) | 1565 | (let ((case-fold-search t)) |
| 1566 | ad-do-it)) | 1566 | ad-do-it)) |
| 1567 | (ad-activate 'foo) | 1567 | (ad-activate 'foo) |
| @@ -1571,7 +1571,7 @@ could translate into: | |||
| 1571 | 1571 | ||
| 1572 | @example | 1572 | @example |
| 1573 | (defun foo--foo-around (orig-fun &rest args) | 1573 | (defun foo--foo-around (orig-fun &rest args) |
| 1574 | "Ignore case in ‘foo’." | 1574 | "Ignore case in `foo'." |
| 1575 | (let ((case-fold-search t)) | 1575 | (let ((case-fold-search t)) |
| 1576 | (apply orig-fun args))) | 1576 | (apply orig-fun args))) |
| 1577 | (advice-add 'foo :around #'foo--foo-around) | 1577 | (advice-add 'foo :around #'foo--foo-around) |
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi index 89339ffe575..b3042d747b4 100644 --- a/doc/lispref/help.texi +++ b/doc/lispref/help.texi | |||
| @@ -377,7 +377,7 @@ specifies a key binding that the command does not actually have. | |||
| 377 | @smallexample | 377 | @smallexample |
| 378 | @group | 378 | @group |
| 379 | (substitute-command-keys | 379 | (substitute-command-keys |
| 380 | "To abort recursive edit, type ‘\\[abort-recursive-edit]’.") | 380 | "To abort recursive edit, type `\\[abort-recursive-edit]'.") |
| 381 | @result{} "To abort recursive edit, type ‘C-]’." | 381 | @result{} "To abort recursive edit, type ‘C-]’." |
| 382 | @end group | 382 | @end group |
| 383 | 383 | ||
| @@ -398,7 +398,7 @@ C-g abort-recursive-edit | |||
| 398 | 398 | ||
| 399 | @group | 399 | @group |
| 400 | (substitute-command-keys | 400 | (substitute-command-keys |
| 401 | "To abort a recursive edit from the minibuffer, type\ | 401 | "To abort a recursive edit from the minibuffer, type \ |
| 402 | `\\<minibuffer-local-must-match-map>\\[abort-recursive-edit]'.") | 402 | `\\<minibuffer-local-must-match-map>\\[abort-recursive-edit]'.") |
| 403 | @result{} "To abort a recursive edit from the minibuffer, type ‘C-g’." | 403 | @result{} "To abort a recursive edit from the minibuffer, type ‘C-g’." |
| 404 | @end group | 404 | @end group |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index f00e481275f..a8b6bb19c5f 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -1155,9 +1155,9 @@ Many other modes, such as `mail-mode', `outline-mode' and | |||
| 1155 | "Major mode for editing text written for humans to read. | 1155 | "Major mode for editing text written for humans to read. |
| 1156 | In this mode, paragraphs are delimited only by blank or white lines. | 1156 | In this mode, paragraphs are delimited only by blank or white lines. |
| 1157 | You can thus get the full benefit of adaptive filling | 1157 | You can thus get the full benefit of adaptive filling |
| 1158 | (see the variable ‘adaptive-fill-mode’). | 1158 | (see the variable `adaptive-fill-mode'). |
| 1159 | \\@{text-mode-map@} | 1159 | \\@{text-mode-map@} |
| 1160 | Turning on Text mode runs the normal hook ‘text-mode-hook’." | 1160 | Turning on Text mode runs the normal hook `text-mode-hook'." |
| 1161 | @end group | 1161 | @end group |
| 1162 | @group | 1162 | @group |
| 1163 | (set (make-local-variable 'text-mode-variant) t) | 1163 | (set (make-local-variable 'text-mode-variant) t) |
| @@ -1252,7 +1252,7 @@ And here is the code to set up the keymap for Lisp mode: | |||
| 1252 | @dots{} | 1252 | @dots{} |
| 1253 | map) | 1253 | map) |
| 1254 | "Keymap for ordinary Lisp mode. | 1254 | "Keymap for ordinary Lisp mode. |
| 1255 | All commands in ‘lisp-mode-shared-map’ are inherited by this map.") | 1255 | All commands in `lisp-mode-shared-map' are inherited by this map.") |
| 1256 | @end group | 1256 | @end group |
| 1257 | @end smallexample | 1257 | @end smallexample |
| 1258 | 1258 | ||
| @@ -1268,12 +1268,12 @@ Delete converts tabs to spaces as it moves back. | |||
| 1268 | Blank lines separate paragraphs. Semicolons start comments. | 1268 | Blank lines separate paragraphs. Semicolons start comments. |
| 1269 | 1269 | ||
| 1270 | \\@{lisp-mode-map@} | 1270 | \\@{lisp-mode-map@} |
| 1271 | Note that ‘run-lisp’ may be used either to start an inferior Lisp job | 1271 | Note that `run-lisp' may be used either to start an inferior Lisp job |
| 1272 | or to switch back to an existing one. | 1272 | or to switch back to an existing one. |
| 1273 | @end group | 1273 | @end group |
| 1274 | 1274 | ||
| 1275 | @group | 1275 | @group |
| 1276 | Entry to this mode calls the value of ‘lisp-mode-hook’ | 1276 | Entry to this mode calls the value of `lisp-mode-hook' |
| 1277 | if that value is non-nil." | 1277 | if that value is non-nil." |
| 1278 | (lisp-mode-variables nil t) | 1278 | (lisp-mode-variables nil t) |
| 1279 | (set (make-local-variable 'find-tag-default-function) | 1279 | (set (make-local-variable 'find-tag-default-function) |
| @@ -1447,7 +1447,7 @@ will load the library that defines the mode. For example: | |||
| 1447 | (defcustom msb-mode nil | 1447 | (defcustom msb-mode nil |
| 1448 | "Toggle msb-mode. | 1448 | "Toggle msb-mode. |
| 1449 | Setting this variable directly does not take effect; | 1449 | Setting this variable directly does not take effect; |
| 1450 | use either \\[customize] or the function ‘msb-mode’." | 1450 | use either \\[customize] or the function `msb-mode'." |
| 1451 | :set 'custom-set-minor-mode | 1451 | :set 'custom-set-minor-mode |
| 1452 | :initialize 'custom-initialize-default | 1452 | :initialize 'custom-initialize-default |
| 1453 | :version "20.4" | 1453 | :version "20.4" |
| @@ -1605,7 +1605,7 @@ for this macro. | |||
| 1605 | Interactively with no argument, this command toggles the mode. | 1605 | Interactively with no argument, this command toggles the mode. |
| 1606 | A positive prefix argument enables the mode, any other prefix | 1606 | A positive prefix argument enables the mode, any other prefix |
| 1607 | argument disables it. From Lisp, argument omitted or nil enables | 1607 | argument disables it. From Lisp, argument omitted or nil enables |
| 1608 | the mode, ‘toggle’ toggles the state. | 1608 | the mode, `toggle' toggles the state. |
| 1609 | 1609 | ||
| 1610 | When Hungry mode is enabled, the control delete key | 1610 | When Hungry mode is enabled, the control delete key |
| 1611 | gobbles all preceding whitespace except the last. | 1611 | gobbles all preceding whitespace except the last. |
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index f7d4117673a..6ef87dfbd53 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi | |||
| @@ -1928,7 +1928,7 @@ idleness. Here's an example: | |||
| 1928 | 1928 | ||
| 1929 | @example | 1929 | @example |
| 1930 | (defvar my-resume-timer nil | 1930 | (defvar my-resume-timer nil |
| 1931 | "Timer for ‘my-timer-function’ to reschedule itself, or nil.") | 1931 | "Timer for `my-timer-function' to reschedule itself, or nil.") |
| 1932 | 1932 | ||
| 1933 | (defun my-timer-function () | 1933 | (defun my-timer-function () |
| 1934 | ;; @r{If the user types a command while @code{my-resume-timer}} | 1934 | ;; @r{If the user types a command while @code{my-resume-timer}} |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 98b3dfb9e3a..c9509b0f216 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1720,13 +1720,13 @@ sentinel, the eventual call to the sentinel will use the new one. | |||
| 1720 | @group | 1720 | @group |
| 1721 | (defun msg-me (process event) | 1721 | (defun msg-me (process event) |
| 1722 | (princ | 1722 | (princ |
| 1723 | (format "Process: %s had the event ‘%s’" process event))) | 1723 | (format "Process: %s had the event '%s'" process event))) |
| 1724 | (set-process-sentinel (get-process "shell") 'msg-me) | 1724 | (set-process-sentinel (get-process "shell") 'msg-me) |
| 1725 | @result{} msg-me | 1725 | @result{} msg-me |
| 1726 | @end group | 1726 | @end group |
| 1727 | @group | 1727 | @group |
| 1728 | (kill-process (get-process "shell")) | 1728 | (kill-process (get-process "shell")) |
| 1729 | @print{} Process: #<process shell> had the event ‘killed’ | 1729 | @print{} Process: #<process shell> had the event 'killed' |
| 1730 | @result{} #<process shell> | 1730 | @result{} #<process shell> |
| 1731 | @end group | 1731 | @end group |
| 1732 | @end smallexample | 1732 | @end smallexample |
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 4a338931601..f42250719e5 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -969,12 +969,12 @@ is not truncated. | |||
| 969 | 969 | ||
| 970 | @example | 970 | @example |
| 971 | @group | 971 | @group |
| 972 | (format "The word ‘%7s’ has %d letters in it." | 972 | (format "The word '%7s' has %d letters in it." |
| 973 | "foo" (length "foo")) | 973 | "foo" (length "foo")) |
| 974 | @result{} "The word ‘ foo’ has 3 letters in it." | 974 | @result{} "The word ' foo' has 3 letters in it." |
| 975 | (format "The word ‘%7s’ has %d letters in it." | 975 | (format "The word '%7s' has %d letters in it." |
| 976 | "specification" (length "specification")) | 976 | "specification" (length "specification")) |
| 977 | @result{} "The word ‘specification’ has 13 letters in it." | 977 | @result{} "The word 'specification' has 13 letters in it." |
| 978 | @end group | 978 | @end group |
| 979 | @end example | 979 | @end example |
| 980 | 980 | ||
| @@ -1013,12 +1013,12 @@ ignored. | |||
| 1013 | (format "%06d is padded on the left with zeros" 123) | 1013 | (format "%06d is padded on the left with zeros" 123) |
| 1014 | @result{} "000123 is padded on the left with zeros" | 1014 | @result{} "000123 is padded on the left with zeros" |
| 1015 | 1015 | ||
| 1016 | (format "‘%-6d’ is padded on the right" 123) | 1016 | (format "'%-6d' is padded on the right" 123) |
| 1017 | @result{} "‘123 ’ is padded on the right" | 1017 | @result{} "'123 ' is padded on the right" |
| 1018 | 1018 | ||
| 1019 | (format "The word ‘%-7s’ actually has %d letters in it." | 1019 | (format "The word '%-7s' actually has %d letters in it." |
| 1020 | "foo" (length "foo")) | 1020 | "foo" (length "foo")) |
| 1021 | @result{} "The word ‘foo ’ actually has 3 letters in it." | 1021 | @result{} "The word 'foo ' actually has 3 letters in it." |
| 1022 | @end group | 1022 | @end group |
| 1023 | @end example | 1023 | @end example |
| 1024 | 1024 | ||
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 33044280175..55e550a7b80 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -1960,7 +1960,7 @@ Called from a program, there are three arguments: | |||
| 1960 | @group | 1960 | @group |
| 1961 | REVERSE (non-nil means reverse order),\ | 1961 | REVERSE (non-nil means reverse order),\ |
| 1962 | BEG and END (region to sort). | 1962 | BEG and END (region to sort). |
| 1963 | The variable ‘sort-fold-case’ determines\ | 1963 | The variable `sort-fold-case' determines\ |
| 1964 | whether alphabetic case affects | 1964 | whether alphabetic case affects |
| 1965 | the sort order." | 1965 | the sort order." |
| 1966 | @end group | 1966 | @end group |
diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi index 7107bb45872..3bde0a877ab 100644 --- a/doc/lispref/tips.texi +++ b/doc/lispref/tips.texi | |||
| @@ -689,7 +689,7 @@ immediately before the symbol name. (Case makes no difference in | |||
| 689 | recognizing these indicator words.) For example, if you write | 689 | recognizing these indicator words.) For example, if you write |
| 690 | 690 | ||
| 691 | @example | 691 | @example |
| 692 | This function sets the variable ‘buffer-file-name’. | 692 | This function sets the variable `buffer-file-name'. |
| 693 | @end example | 693 | @end example |
| 694 | 694 | ||
| 695 | @noindent | 695 | @noindent |
| @@ -702,7 +702,7 @@ you can write the words @samp{symbol} or @samp{program} before the | |||
| 702 | symbol name to prevent making any hyperlink. For example, | 702 | symbol name to prevent making any hyperlink. For example, |
| 703 | 703 | ||
| 704 | @example | 704 | @example |
| 705 | If the argument KIND-OF-RESULT is the symbol ‘list’, | 705 | If the argument KIND-OF-RESULT is the symbol `list', |
| 706 | this function returns a list of all the objects | 706 | this function returns a list of all the objects |
| 707 | that satisfy the criterion. | 707 | that satisfy the criterion. |
| 708 | @end example | 708 | @end example |
| @@ -727,7 +727,7 @@ name of the Info node (or anchor), preceded by | |||
| 727 | anchor}. The Info file name defaults to @samp{emacs}. For example, | 727 | anchor}. The Info file name defaults to @samp{emacs}. For example, |
| 728 | 728 | ||
| 729 | @smallexample | 729 | @smallexample |
| 730 | See Info node ‘Font Lock’ and Info node ‘(elisp)Font Lock Basics’. | 730 | See Info node `Font Lock' and Info node `(elisp)Font Lock Basics'. |
| 731 | @end smallexample | 731 | @end smallexample |
| 732 | 732 | ||
| 733 | Finally, to create a hyperlink to URLs, write the single-quoted URL, | 733 | Finally, to create a hyperlink to URLs, write the single-quoted URL, |
| @@ -735,7 +735,7 @@ preceded by @samp{URL}. For example, | |||
| 735 | 735 | ||
| 736 | @smallexample | 736 | @smallexample |
| 737 | The home page for the GNU project has more information (see URL | 737 | The home page for the GNU project has more information (see URL |
| 738 | ‘http://www.gnu.org/’). | 738 | `http://www.gnu.org/'). |
| 739 | @end smallexample | 739 | @end smallexample |
| 740 | 740 | ||
| 741 | @item | 741 | @item |
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index 565abb557e2..7a824acfed5 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi | |||
| @@ -867,14 +867,14 @@ It would look like this: | |||
| 867 | ) | 867 | ) |
| 868 | 868 | ||
| 869 | (defun MY-ROOT-FCN () | 869 | (defun MY-ROOT-FCN () |
| 870 | "Return the root fcn for ‘default-directory’" | 870 | "Return the root fcn for `default-directory'" |
| 871 | ;; You might be able to use 'ede-cpp-root-project-root' | 871 | ;; You might be able to use 'ede-cpp-root-project-root' |
| 872 | ;; and not write this at all. | 872 | ;; and not write this at all. |
| 873 | ) | 873 | ) |
| 874 | 874 | ||
| 875 | (defun MY-LOAD (dir) | 875 | (defun MY-LOAD (dir) |
| 876 | "Load a project of type ‘cpp-root’ for the directory DIR. | 876 | "Load a project of type `cpp-root' for the directory DIR. |
| 877 | Return nil if there isn’t one." | 877 | Return nil if there isn't one." |
| 878 | ;; Use your preferred construction method here. | 878 | ;; Use your preferred construction method here. |
| 879 | (ede-cpp-root-project "NAME" :file (expand-file-name "FILE" dir) | 879 | (ede-cpp-root-project "NAME" :file (expand-file-name "FILE" dir) |
| 880 | :locate-fcn 'MYFCN) | 880 | :locate-fcn 'MYFCN) |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 75df1d41ff9..3e9109d0924 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -4336,7 +4336,7 @@ best fix I've been able to come up with: | |||
| 4336 | 4336 | ||
| 4337 | @lisp | 4337 | @lisp |
| 4338 | (defun rmail-reply-t () | 4338 | (defun rmail-reply-t () |
| 4339 | "Reply only to the sender of the current message. (See ‘rmail-reply’.)" | 4339 | "Reply only to the sender of the current message. (See rmail-reply.)" |
| 4340 | (interactive) | 4340 | (interactive) |
| 4341 | (rmail-reply t)) | 4341 | (rmail-reply t)) |
| 4342 | 4342 | ||
diff --git a/doc/misc/eieio.texi b/doc/misc/eieio.texi index 7cee5c30a1b..fb4e1470016 100644 --- a/doc/misc/eieio.texi +++ b/doc/misc/eieio.texi | |||
| @@ -1529,7 +1529,7 @@ Currently, the default superclass is defined as follows: | |||
| 1529 | nil | 1529 | nil |
| 1530 | "Default parent class for classes with no specified parent class. | 1530 | "Default parent class for classes with no specified parent class. |
| 1531 | Its slots are automatically adopted by classes with no specified | 1531 | Its slots are automatically adopted by classes with no specified |
| 1532 | parents. This class is not stored in the ‘parent’ slot of a class vector." | 1532 | parents. This class is not stored in the `parent' slot of a class vector." |
| 1533 | :abstract t) | 1533 | :abstract t) |
| 1534 | @end example | 1534 | @end example |
| 1535 | 1535 | ||
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi index 5ab34a0f7ae..19c78bf56c6 100644 --- a/doc/misc/gnus-faq.texi +++ b/doc/misc/gnus-faq.texi | |||
| @@ -1671,7 +1671,7 @@ instead (works for newer versions as well): | |||
| 1671 | (setq message-user-fqdn fqdn) | 1671 | (setq message-user-fqdn fqdn) |
| 1672 | (gnus-message 1 "Redefining `message-make-fqdn'.") | 1672 | (gnus-message 1 "Redefining `message-make-fqdn'.") |
| 1673 | (defun message-make-fqdn () | 1673 | (defun message-make-fqdn () |
| 1674 | "Return user’s fully qualified domain name." | 1674 | "Return user's fully qualified domain name." |
| 1675 | fqdn)))) | 1675 | fqdn)))) |
| 1676 | @end example | 1676 | @end example |
| 1677 | @noindent | 1677 | @noindent |
| @@ -1765,9 +1765,9 @@ snippet by Frank Haun <pille3003@@fhaun.de> in | |||
| 1765 | 1765 | ||
| 1766 | @example | 1766 | @example |
| 1767 | (defun my-archive-article (&optional n) | 1767 | (defun my-archive-article (&optional n) |
| 1768 | "Copies one or more article(s) to a corresponding ‘nnml:’ group, e.g., | 1768 | "Copies one or more article(s) to a corresponding `nnml:' group, e.g., |
| 1769 | ‘gnus.ding’ goes to ‘nnml:1.gnus.ding’. And ‘nnml:List-gnus.ding’ goes | 1769 | `gnus.ding' goes to `nnml:1.gnus.ding'. And `nnml:List-gnus.ding' goes |
| 1770 | to ‘nnml:1.List-gnus-ding’. | 1770 | to `nnml:1.List-gnus-ding'. |
| 1771 | 1771 | ||
| 1772 | Use process marks or mark a region in the summary buffer to archive | 1772 | Use process marks or mark a region in the summary buffer to archive |
| 1773 | more then one article." | 1773 | more then one article." |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index d50bcd671ae..9093fa24f3d 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -21034,8 +21034,8 @@ function: | |||
| 21034 | 21034 | ||
| 21035 | @lisp | 21035 | @lisp |
| 21036 | (defun gnus-decay-score (score) | 21036 | (defun gnus-decay-score (score) |
| 21037 | "Decay SCORE according to ‘gnus-score-decay-constant’ | 21037 | "Decay SCORE according to `gnus-score-decay-constant' |
| 21038 | and ‘gnus-score-decay-scale’." | 21038 | and `gnus-score-decay-scale'." |
| 21039 | (let ((n (- score | 21039 | (let ((n (- score |
| 21040 | (* (if (< score 0) -1 1) | 21040 | (* (if (< score 0) -1 1) |
| 21041 | (min (abs score) | 21041 | (min (abs score) |
| @@ -24081,7 +24081,7 @@ spam. And here is the nifty function: | |||
| 24081 | 24081 | ||
| 24082 | @lisp | 24082 | @lisp |
| 24083 | (defun my-gnus-raze-spam () | 24083 | (defun my-gnus-raze-spam () |
| 24084 | "Submit SPAM to Vipul’s Razor, then mark it as expirable." | 24084 | "Submit SPAM to Vipul's Razor, then mark it as expirable." |
| 24085 | (interactive) | 24085 | (interactive) |
| 24086 | (gnus-summary-save-in-pipe "razor-report -f -d" t) | 24086 | (gnus-summary-save-in-pipe "razor-report -f -d" t) |
| 24087 | (gnus-summary-mark-as-expirable 1)) | 24087 | (gnus-summary-mark-as-expirable 1)) |
diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi index a0d74b41be3..a707ba5f03e 100644 --- a/doc/misc/rcirc.texi +++ b/doc/misc/rcirc.texi | |||
| @@ -909,7 +909,7 @@ The real answer, therefore, is a @code{/reconnect} command: | |||
| 909 | "Reconnect the server process." | 909 | "Reconnect the server process." |
| 910 | (interactive "i") | 910 | (interactive "i") |
| 911 | (unless process | 911 | (unless process |
| 912 | (error "There’s no process for this target")) | 912 | (error "There's no process for this target")) |
| 913 | (let* ((server (car (process-contact process))) | 913 | (let* ((server (car (process-contact process))) |
| 914 | (port (process-contact process :service)) | 914 | (port (process-contact process :service)) |
| 915 | (nick (rcirc-nick process)) | 915 | (nick (rcirc-nick process)) |