diff options
| author | Paul Eggert | 2016-01-25 08:08:24 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-25 08:09:09 -0800 |
| commit | a528a60f48f6b939c5014c96d3445de13d2ed243 (patch) | |
| tree | 8240a9b0e1fa63d38e514e68276e0b6c4e2993b8 /lisp | |
| parent | 21beb19d80b6aba2c2b736b3e1d031f1ef0e743d (diff) | |
| download | emacs-a528a60f48f6b939c5014c96d3445de13d2ed243.tar.gz emacs-a528a60f48f6b939c5014c96d3445de13d2ed243.zip | |
Spelling fixes
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/pcase.el | 2 | ||||
| -rw-r--r-- | lisp/org/ChangeLog.1 | 2 | ||||
| -rw-r--r-- | lisp/progmodes/antlr-mode.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/cc-engine.el | 6 | ||||
| -rw-r--r-- | lisp/xwidget.el | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el index 549ee96dd5f..7be997e6469 100644 --- a/lisp/emacs-lisp/pcase.el +++ b/lisp/emacs-lisp/pcase.el | |||
| @@ -117,7 +117,7 @@ two element list, binding its elements to symbols named `foo' and | |||
| 117 | 117 | ||
| 118 | A significant difference from `cl-destructuring-bind' is that, if | 118 | A significant difference from `cl-destructuring-bind' is that, if |
| 119 | a pattern match fails, the next case is tried until either a | 119 | a pattern match fails, the next case is tried until either a |
| 120 | succesful match is found or there are no more cases. | 120 | successful match is found or there are no more cases. |
| 121 | 121 | ||
| 122 | Another difference is that pattern elements may be backquoted, | 122 | Another difference is that pattern elements may be backquoted, |
| 123 | meaning they must match exactly: The pattern \\='(foo bar) | 123 | meaning they must match exactly: The pattern \\='(foo bar) |
diff --git a/lisp/org/ChangeLog.1 b/lisp/org/ChangeLog.1 index d81e44d7c13..8c118ec7dd0 100644 --- a/lisp/org/ChangeLog.1 +++ b/lisp/org/ChangeLog.1 | |||
| @@ -32528,7 +32528,7 @@ | |||
| 32528 | (org-export-normalize-links) | 32528 | (org-export-normalize-links) |
| 32529 | (org-export-concatenate-multiline-links) | 32529 | (org-export-concatenate-multiline-links) |
| 32530 | (org-export-concatenate-multiline-emphasis): New functions, | 32530 | (org-export-concatenate-multiline-emphasis): New functions, |
| 32531 | obtained from spliting the export preprocessor. | 32531 | obtained from splitting the export preprocessor. |
| 32532 | 32532 | ||
| 32533 | * org-table.el (org-table-recalculate): Improve error message if | 32533 | * org-table.el (org-table-recalculate): Improve error message if |
| 32534 | the row number is invalid. | 32534 | the row number is invalid. |
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el index f33609c1d0a..ee81add340c 100644 --- a/lisp/progmodes/antlr-mode.el +++ b/lisp/progmodes/antlr-mode.el | |||
| @@ -537,7 +537,7 @@ corresponding kind, i.e., looks like \(OPTION-DEF...). | |||
| 537 | Each OPTION-DEF looks like \(OPTION-NAME EXTRA-FN VALUE-SPEC...) which | 537 | Each OPTION-DEF looks like \(OPTION-NAME EXTRA-FN VALUE-SPEC...) which |
| 538 | defines a file/grammar/rule/subrule option with name OPTION-NAME. The | 538 | defines a file/grammar/rule/subrule option with name OPTION-NAME. The |
| 539 | OPTION-NAMEs are used for the creation of the \"Insert XXX Option\" | 539 | OPTION-NAMEs are used for the creation of the \"Insert XXX Option\" |
| 540 | submenus, see `antlr-options-use-submenus', and to allow the insersion | 540 | submenus, see `antlr-options-use-submenus', and to allow the insertion |
| 541 | of the option name with completion when using \\[antlr-insert-option]. | 541 | of the option name with completion when using \\[antlr-insert-option]. |
| 542 | 542 | ||
| 543 | If EXTRA-FN is a function, it is called at different phases of the | 543 | If EXTRA-FN is a function, it is called at different phases of the |
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 815bd7216f2..b75d667d318 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el | |||
| @@ -8284,8 +8284,8 @@ comment at the start of cc-engine.el for more info." | |||
| 8284 | before-lparen after-rparen | 8284 | before-lparen after-rparen |
| 8285 | (here (point)) | 8285 | (here (point)) |
| 8286 | (pp-count-out 20) ; Max number of paren/brace constructs before | 8286 | (pp-count-out 20) ; Max number of paren/brace constructs before |
| 8287 | ; we give up | 8287 | ; we give up. |
| 8288 | ids ; List of identifiers in the parenthesised list. | 8288 | ids ; List of identifiers in the parenthesized list. |
| 8289 | id-start after-prec-token decl-or-cast decl-res | 8289 | id-start after-prec-token decl-or-cast decl-res |
| 8290 | c-last-identifier-range identifier-ok) | 8290 | c-last-identifier-range identifier-ok) |
| 8291 | (narrow-to-region low-lim (or macro-end (point-max))) | 8291 | (narrow-to-region low-lim (or macro-end (point-max))) |
| @@ -8310,7 +8310,7 @@ comment at the start of cc-engine.el for more info." | |||
| 8310 | ;; { | 8310 | ;; { |
| 8311 | ;; | 8311 | ;; |
| 8312 | ;; Additionally, for a knr list to be recognized: | 8312 | ;; Additionally, for a knr list to be recognized: |
| 8313 | ;; o - The identifier of each deeclarator up to and including the | 8313 | ;; o - The identifier of each declarator up to and including the |
| 8314 | ;; one "near" point must be contained in the arg list. | 8314 | ;; one "near" point must be contained in the arg list. |
| 8315 | 8315 | ||
| 8316 | (catch 'knr | 8316 | (catch 'knr |
diff --git a/lisp/xwidget.el b/lisp/xwidget.el index f184eb31dbb..ebd79f246a1 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el | |||
| @@ -491,7 +491,7 @@ Argument H height." | |||
| 491 | (defun xwidget-webkit-execute-script-rv (xw script &optional default) | 491 | (defun xwidget-webkit-execute-script-rv (xw script &optional default) |
| 492 | "Same as 'xwidget-webkit-execute-script' but but with return value. | 492 | "Same as 'xwidget-webkit-execute-script' but but with return value. |
| 493 | XW is the webkit instance. SCRIPT is the script to execute. | 493 | XW is the webkit instance. SCRIPT is the script to execute. |
| 494 | DEFAULT is the defaultreturn value." | 494 | DEFAULT is the default return value." |
| 495 | ;; Notice the ugly "title" hack. It is needed because the Webkit | 495 | ;; Notice the ugly "title" hack. It is needed because the Webkit |
| 496 | ;; API at the time of writing didn't support returning values. This | 496 | ;; API at the time of writing didn't support returning values. This |
| 497 | ;; is a wrapper for the title hack so it's easy to remove should | 497 | ;; is a wrapper for the title hack so it's easy to remove should |