diff options
| author | Paul Eggert | 2011-11-19 18:29:42 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-11-19 18:29:42 -0800 |
| commit | e1dbe924b53c541fdf238a5a722b7177d5c8760b (patch) | |
| tree | cef637ee7849fac3160c668f88e0f761305f87d3 /lisp/textmodes | |
| parent | 7fb18e9ef9edb3b47cf463babe83922f9310a473 (diff) | |
| download | emacs-e1dbe924b53c541fdf238a5a722b7177d5c8760b.tar.gz emacs-e1dbe924b53c541fdf238a5a722b7177d5c8760b.zip | |
Spelling fixes.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/conf-mode.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/table.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 4459ac10098..c9b1c44eb91 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -3595,7 +3595,7 @@ If optional arg CONTENT is non-nil extract content of text fields." | |||
| 3595 | (defun bibtex-autofill-entry () | 3595 | (defun bibtex-autofill-entry () |
| 3596 | "Try to fill fields of current BibTeX entry based on neighboring entries. | 3596 | "Try to fill fields of current BibTeX entry based on neighboring entries. |
| 3597 | The current entry must have a key. Determine the neighboring entry | 3597 | The current entry must have a key. Determine the neighboring entry |
| 3598 | \(previouse or next\) whose key is more similar to the key of the current | 3598 | \(previous or next\) whose key is more similar to the key of the current |
| 3599 | entry. For all empty fields of the current entry insert the corresponding | 3599 | entry. For all empty fields of the current entry insert the corresponding |
| 3600 | field contents of the neighboring entry. Finally try to update the text | 3600 | field contents of the neighboring entry. Finally try to update the text |
| 3601 | based on the difference between the keys of the neighboring and the current | 3601 | based on the difference between the keys of the neighboring and the current |
diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el index 5cc5ba45e13..1127e6a5d20 100644 --- a/lisp/textmodes/conf-mode.el +++ b/lisp/textmodes/conf-mode.el | |||
| @@ -155,7 +155,7 @@ not align (only setting space according to `conf-assignment-space')." | |||
| 155 | (modify-syntax-entry ?/ ". 124" table) | 155 | (modify-syntax-entry ?/ ". 124" table) |
| 156 | (modify-syntax-entry ?* ". 23b" table) | 156 | (modify-syntax-entry ?* ". 23b" table) |
| 157 | table) | 157 | table) |
| 158 | "Syntax table in use in Java prperties buffers.") | 158 | "Syntax table in use in Java properties buffers.") |
| 159 | 159 | ||
| 160 | (defvar conf-ppd-mode-syntax-table | 160 | (defvar conf-ppd-mode-syntax-table |
| 161 | (let ((table (make-syntax-table conf-mode-syntax-table))) | 161 | (let ((table (make-syntax-table conf-mode-syntax-table))) |
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 08922445521..08a45b6b302 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -5535,7 +5535,7 @@ When COORDINATE is omitted or nil the point in current buffer is assumed in plac | |||
| 5535 | table-cell-info-lu-coordinate)) | 5535 | table-cell-info-lu-coordinate)) |
| 5536 | 5536 | ||
| 5537 | (defun table--offset-coordinate (coordinate offset &optional negative) | 5537 | (defun table--offset-coordinate (coordinate offset &optional negative) |
| 5538 | "Return the offseted COORDINATE by OFFSET. | 5538 | "Return the offset COORDINATE by OFFSET. |
| 5539 | When optional NEGATIVE is non-nil offsetting direction is negative." | 5539 | When optional NEGATIVE is non-nil offsetting direction is negative." |
| 5540 | (cons (if negative (- (car coordinate) (car offset)) | 5540 | (cons (if negative (- (car coordinate) (car offset)) |
| 5541 | (+ (car coordinate) (car offset))) | 5541 | (+ (car coordinate) (car offset))) |