diff options
| author | Paul Eggert | 2015-08-16 23:52:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-08-16 23:53:04 -0700 |
| commit | abd838ef8bab125f4360b8618ffe742e1e045625 (patch) | |
| tree | 2a616ce1f98df4cdf5923496a5981fdcd0e6b565 /lisp/progmodes | |
| parent | 9a6d63fe2a6f8e46af83beefa48c18a05a47497b (diff) | |
| download | emacs-abd838ef8bab125f4360b8618ffe742e1e045625.tar.gz emacs-abd838ef8bab125f4360b8618ffe742e1e045625.zip | |
Spelling fixes
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 8392df2a6b9..6ad803d9be8 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -604,7 +604,7 @@ It can be quoted, or be inside a quoted form." | |||
| 604 | (`apropos | 604 | (`apropos |
| 605 | (elisp--xref-find-apropos id)))) | 605 | (elisp--xref-find-apropos id)))) |
| 606 | 606 | ||
| 607 | ;; WORKAROUND: This is nominally a constant, but the text properities | 607 | ;; WORKAROUND: This is nominally a constant, but the text properties |
| 608 | ;; are not preserved thru dump if use defconst. See bug#21237. | 608 | ;; are not preserved thru dump if use defconst. See bug#21237. |
| 609 | (defvar elisp--xref-format | 609 | (defvar elisp--xref-format |
| 610 | (let ((str "(%s %s)")) | 610 | (let ((str "(%s %s)")) |
| @@ -612,7 +612,7 @@ It can be quoted, or be inside a quoted form." | |||
| 612 | (put-text-property 4 6 'face 'font-lock-function-name-face str) | 612 | (put-text-property 4 6 'face 'font-lock-function-name-face str) |
| 613 | str)) | 613 | str)) |
| 614 | 614 | ||
| 615 | ;; WORKAROUND: This is nominally a constant, but the text properities | 615 | ;; WORKAROUND: This is nominally a constant, but the text properties |
| 616 | ;; are not preserved thru dump if use defconst. See bug#21237. | 616 | ;; are not preserved thru dump if use defconst. See bug#21237. |
| 617 | (defvar elisp--xref-format-extra | 617 | (defvar elisp--xref-format-extra |
| 618 | (let ((str "(%s %s %s)")) | 618 | (let ((str "(%s %s %s)")) |
| @@ -693,12 +693,12 @@ otherwise build the summary from TYPE and SYMBOL." | |||
| 693 | ;; specializers. | 693 | ;; specializers. |
| 694 | ;; | 694 | ;; |
| 695 | ;; If the default method is declared by the cl-defgeneric | 695 | ;; If the default method is declared by the cl-defgeneric |
| 696 | ;; declaration, it will have the same location as teh | 696 | ;; declaration, it will have the same location as the |
| 697 | ;; cl-defgeneric, so we want to exclude it from the | 697 | ;; cl-defgeneric, so we want to exclude it from the |
| 698 | ;; result. In this case, it will have a null doc | 698 | ;; result. In this case, it will have a null doc |
| 699 | ;; string. User declarations of default methods may also | 699 | ;; string. User declarations of default methods may also |
| 700 | ;; have null doc strings, but we hope that is | 700 | ;; have null doc strings, but we hope that is |
| 701 | ;; rare. Perhaps this hueristic will discourage that. | 701 | ;; rare. Perhaps this heuristic will discourage that. |
| 702 | (dolist (method (cl--generic-method-table generic)) | 702 | (dolist (method (cl--generic-method-table generic)) |
| 703 | (let* ((info (cl--generic-method-info method));; qual-string combined-args doconly | 703 | (let* ((info (cl--generic-method-info method));; qual-string combined-args doconly |
| 704 | (specializers (cl--generic-method-specializers method)) | 704 | (specializers (cl--generic-method-specializers method)) |