diff options
| author | Paul Eggert | 2012-10-04 22:57:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-10-04 22:57:24 -0700 |
| commit | 735135f9bc3c01b91ffef7c418dd9281bc347ab7 (patch) | |
| tree | 94c73a545a14f064a9e30559089769f60dfbbf34 /lisp | |
| parent | be636386220e8a73b57b03572c625fa92bcf199a (diff) | |
| download | emacs-735135f9bc3c01b91ffef7c418dd9281bc347ab7.tar.gz emacs-735135f9bc3c01b91ffef7c418dd9281bc347ab7.zip | |
Spelling fixes.
Diffstat (limited to 'lisp')
31 files changed, 60 insertions, 66 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f6138eaa15b..eaef867e9e2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -8347,7 +8347,8 @@ | |||
| 8347 | 8347 | ||
| 8348 | 2012-03-18 Leo Liu <sdl.web@gmail.com> | 8348 | 2012-03-18 Leo Liu <sdl.web@gmail.com> |
| 8349 | 8349 | ||
| 8350 | * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix. | 8350 | * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with |
| 8351 | prefix. | ||
| 8351 | 8352 | ||
| 8352 | 2012-03-17 Eli Zaretskii <eliz@gnu.org> | 8353 | 2012-03-17 Eli Zaretskii <eliz@gnu.org> |
| 8353 | 8354 | ||
diff --git a/lisp/ChangeLog.10 b/lisp/ChangeLog.10 index d94d72d0f3c..c9085827f7b 100644 --- a/lisp/ChangeLog.10 +++ b/lisp/ChangeLog.10 | |||
| @@ -5492,7 +5492,7 @@ | |||
| 5492 | 5492 | ||
| 5493 | 2003-02-14 Dave Love <fx@gnu.org> | 5493 | 2003-02-14 Dave Love <fx@gnu.org> |
| 5494 | 5494 | ||
| 5495 | * international/code-pages.el: Undo `Trailing whitepace deleted.' | 5495 | * international/code-pages.el: Undo `Trailing whitespace deleted.' |
| 5496 | damage. | 5496 | damage. |
| 5497 | (cp1125, mik): Nullify mime-charset. | 5497 | (cp1125, mik): Nullify mime-charset. |
| 5498 | 5498 | ||
diff --git a/lisp/cedet/ede.el b/lisp/cedet/ede.el index ce3536d53ee..22fe362d5d9 100644 --- a/lisp/cedet/ede.el +++ b/lisp/cedet/ede.el | |||
| @@ -1358,13 +1358,13 @@ Return the first non-nil value returned by PROC." | |||
| 1358 | (defmethod ede-system-include-path ((this ede-project)) | 1358 | (defmethod ede-system-include-path ((this ede-project)) |
| 1359 | "Get the system include path used by project THIS." | 1359 | "Get the system include path used by project THIS." |
| 1360 | nil) | 1360 | nil) |
| 1361 | 1361 | ||
| 1362 | (defmethod ede-system-include-path ((this ede-target)) | 1362 | (defmethod ede-system-include-path ((this ede-target)) |
| 1363 | "Get the system include path used by project THIS." | 1363 | "Get the system include path used by project THIS." |
| 1364 | nil) | 1364 | nil) |
| 1365 | 1365 | ||
| 1366 | (defmethod ede-source-paths ((this ede-project) mode) | 1366 | (defmethod ede-source-paths ((this ede-project) mode) |
| 1367 | "Get the base to all source trees in the current projet for MODE. | 1367 | "Get the base to all source trees in the current project for MODE. |
| 1368 | For example, <root>/src for sources of c/c++, Java, etc, | 1368 | For example, <root>/src for sources of c/c++, Java, etc, |
| 1369 | and <root>/doc for doc sources." | 1369 | and <root>/doc for doc sources." |
| 1370 | nil) | 1370 | nil) |
diff --git a/lisp/cedet/ede/auto.el b/lisp/cedet/ede/auto.el index f6446db9108..152f8130ad7 100644 --- a/lisp/cedet/ede/auto.el +++ b/lisp/cedet/ede/auto.el | |||
| @@ -68,7 +68,7 @@ into memory.") | |||
| 68 | 68 | ||
| 69 | ;; Add new types of dirmatches here. | 69 | ;; Add new types of dirmatches here. |
| 70 | 70 | ||
| 71 | ;; Error for wierd stuff | 71 | ;; Error for weird stuff |
| 72 | (t (error "Unknown dirmatch type."))))) | 72 | (t (error "Unknown dirmatch type."))))) |
| 73 | 73 | ||
| 74 | 74 | ||
| @@ -285,7 +285,7 @@ the current buffer." | |||
| 285 | ;; If this file DOES NOT match dirmatch, we set the callfcn | 285 | ;; If this file DOES NOT match dirmatch, we set the callfcn |
| 286 | ;; to nil, meaning don't load the ede support file for this | 286 | ;; to nil, meaning don't load the ede support file for this |
| 287 | ;; type of project. If it does match, we will load the file | 287 | ;; type of project. If it does match, we will load the file |
| 288 | ;; and use a more accurate programatic match from there. | 288 | ;; and use a more accurate programmatic match from there. |
| 289 | (unless (ede-project-dirmatch-p file dirmatch) | 289 | (unless (ede-project-dirmatch-p file dirmatch) |
| 290 | (setq callfcn nil)))) | 290 | (setq callfcn nil)))) |
| 291 | ;; Call into the project support file for a match. | 291 | ;; Call into the project support file for a match. |
diff --git a/lisp/cedet/ede/autoconf-edit.el b/lisp/cedet/ede/autoconf-edit.el index 8144b135ac5..ebfb4154d81 100644 --- a/lisp/cedet/ede/autoconf-edit.el +++ b/lisp/cedet/ede/autoconf-edit.el | |||
| @@ -165,7 +165,7 @@ items such as CHECK_HEADERS." | |||
| 165 | (setq param (substring param (match-end 0)))) | 165 | (setq param (substring param (match-end 0)))) |
| 166 | (when (string-match "\\s-*\\]?\\s-*\\'" param) | 166 | (when (string-match "\\s-*\\]?\\s-*\\'" param) |
| 167 | (setq param (substring param 0 (match-beginning 0)))) | 167 | (setq param (substring param 0 (match-beginning 0)))) |
| 168 | ;; Look for occurances of backslash newline | 168 | ;; Look for occurrences of backslash newline |
| 169 | (while (string-match "\\s-*\\\\\\s-*\n\\s-*" param) | 169 | (while (string-match "\\s-*\\\\\\s-*\n\\s-*" param) |
| 170 | (setq param (replace-match " " t t param))) | 170 | (setq param (replace-match " " t t param))) |
| 171 | param) | 171 | param) |
diff --git a/lisp/cedet/inversion.el b/lisp/cedet/inversion.el index 6a13a12e8e1..6b0f007916b 100644 --- a/lisp/cedet/inversion.el +++ b/lisp/cedet/inversion.el | |||
| @@ -348,7 +348,7 @@ Optional argument RESERVED is saved for later use." | |||
| 348 | 348 | ||
| 349 | ;;;###autoload | 349 | ;;;###autoload |
| 350 | (defun inversion-require-emacs (emacs-ver xemacs-ver sxemacs-ver) | 350 | (defun inversion-require-emacs (emacs-ver xemacs-ver sxemacs-ver) |
| 351 | "Declare that you need either EMACS-VER, XEMACS-VER or SXEMACE-ver. | 351 | "Declare that you need either EMACS-VER, XEMACS-VER or SXEMACS-ver. |
| 352 | Only checks one based on which kind of Emacs is being run." | 352 | Only checks one based on which kind of Emacs is being run." |
| 353 | (let ((err (inversion-test 'emacs | 353 | (let ((err (inversion-test 'emacs |
| 354 | (cond ((featurep 'sxemacs) | 354 | (cond ((featurep 'sxemacs) |
diff --git a/lisp/cedet/semantic/bovine/c.el b/lisp/cedet/semantic/bovine/c.el index 871bcdd6176..02ad6e05d1a 100644 --- a/lisp/cedet/semantic/bovine/c.el +++ b/lisp/cedet/semantic/bovine/c.el | |||
| @@ -390,7 +390,7 @@ Pulls out the symbol list, and call `semantic-c-convert-spp-value-to-hideif-valu | |||
| 390 | ;; can then interpret. | 390 | ;; can then interpret. |
| 391 | (let ((stream (semantic-lex-spp-symbol-stream spp-symbol))) | 391 | (let ((stream (semantic-lex-spp-symbol-stream spp-symbol))) |
| 392 | (cond | 392 | (cond |
| 393 | ;; Empyt string means defined, so t. | 393 | ;; Empty string means defined, so t. |
| 394 | ((null stream) t) | 394 | ((null stream) t) |
| 395 | ;; A list means a parsed macro stream. | 395 | ;; A list means a parsed macro stream. |
| 396 | ((listp stream) | 396 | ((listp stream) |
| @@ -515,7 +515,7 @@ code to parse." | |||
| 515 | ;; should be skipped. | 515 | ;; should be skipped. |
| 516 | (semantic-c-skip-conditional-section) | 516 | (semantic-c-skip-conditional-section) |
| 517 | (setq semantic-lex-end-point (point)) | 517 | (setq semantic-lex-end-point (point)) |
| 518 | 518 | ||
| 519 | ;; @TODO -somewhere around here, we also need to skip | 519 | ;; @TODO -somewhere around here, we also need to skip |
| 520 | ;; other sections of the conditional. | 520 | ;; other sections of the conditional. |
| 521 | 521 | ||
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index f666491d667..61760dd3fe8 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el | |||
| @@ -1555,7 +1555,7 @@ number of completions initially. Pressing TAB will show the | |||
| 1555 | extended set. | 1555 | extended set. |
| 1556 | 1556 | ||
| 1557 | Quiet: Only show completions when we have narrowed all | 1557 | Quiet: Only show completions when we have narrowed all |
| 1558 | posibilities down to a maximum of | 1558 | possibilities down to a maximum of |
| 1559 | `semantic-displayor-tooltip-initial-max-tags' tags. Pressing TAB | 1559 | `semantic-displayor-tooltip-initial-max-tags' tags. Pressing TAB |
| 1560 | multiple times will also show completions. | 1560 | multiple times will also show completions. |
| 1561 | 1561 | ||
| @@ -2239,4 +2239,3 @@ will perform the completion." | |||
| 2239 | ;; End: | 2239 | ;; End: |
| 2240 | 2240 | ||
| 2241 | ;;; semantic/complete.el ends here | 2241 | ;;; semantic/complete.el ends here |
| 2242 | |||
diff --git a/lisp/cedet/semantic/db-global.el b/lisp/cedet/semantic/db-global.el index 0d144483cb9..a7bb130810e 100644 --- a/lisp/cedet/semantic/db-global.el +++ b/lisp/cedet/semantic/db-global.el | |||
| @@ -48,7 +48,7 @@ in a GNU Global supported hierarchy. | |||
| 48 | Two sanity checks are performed to assure (a) that GNU global program exists | 48 | Two sanity checks are performed to assure (a) that GNU global program exists |
| 49 | and (b) that the GNU global program version is compatibility with the database | 49 | and (b) that the GNU global program version is compatibility with the database |
| 50 | version. If optional NOERROR is nil, then an error may be signalled on version | 50 | version. If optional NOERROR is nil, then an error may be signalled on version |
| 51 | mismatch. If NOERROR is not nil, then no error will be signlled. Instead | 51 | mismatch. If NOERROR is not nil, then no error will be signaled. Instead |
| 52 | return value will indicate success or failure with non-nil or nil respective | 52 | return value will indicate success or failure with non-nil or nil respective |
| 53 | values." | 53 | values." |
| 54 | (interactive | 54 | (interactive |
diff --git a/lisp/cedet/semantic/db-typecache.el b/lisp/cedet/semantic/db-typecache.el index 94999a2797b..0da98a6d357 100644 --- a/lisp/cedet/semantic/db-typecache.el +++ b/lisp/cedet/semantic/db-typecache.el | |||
| @@ -584,7 +584,7 @@ If there isn't one, create it. | |||
| 584 | (dolist (P path) | 584 | (dolist (P path) |
| 585 | (condition-case nil | 585 | (condition-case nil |
| 586 | (oset P pointmax nil) | 586 | (oset P pointmax nil) |
| 587 | ;; Pointmax may not exist for all tables disovered in the | 587 | ;; Pointmax may not exist for all tables discovered in the |
| 588 | ;; path. | 588 | ;; path. |
| 589 | (error nil)) | 589 | (error nil)) |
| 590 | (semantic-reset (semanticdb-get-typecache P))))) | 590 | (semantic-reset (semanticdb-get-typecache P))))) |
diff --git a/lisp/cedet/semantic/decorate/include.el b/lisp/cedet/semantic/decorate/include.el index ede5c890163..0c2c5e3ce37 100644 --- a/lisp/cedet/semantic/decorate/include.el +++ b/lisp/cedet/semantic/decorate/include.el | |||
| @@ -589,7 +589,7 @@ This means that Semantic cannot find a file associated with this tag | |||
| 589 | on disk, but a database table of tags has been associated with it. | 589 | on disk, but a database table of tags has been associated with it. |
| 590 | 590 | ||
| 591 | This means that the include will still be used to find tags for | 591 | This means that the include will still be used to find tags for |
| 592 | searches, but you connot visit this include.\n\n") | 592 | searches, but you cannot visit this include.\n\n") |
| 593 | (princ "This Header is now represented by the following database table:\n\n ") | 593 | (princ "This Header is now represented by the following database table:\n\n ") |
| 594 | (princ (object-print table)) | 594 | (princ (object-print table)) |
| 595 | ))) | 595 | ))) |
diff --git a/lisp/cedet/semantic/fw.el b/lisp/cedet/semantic/fw.el index c14ffb77169..5a12047eb76 100644 --- a/lisp/cedet/semantic/fw.el +++ b/lisp/cedet/semantic/fw.el | |||
| @@ -85,7 +85,7 @@ | |||
| 85 | c))) | 85 | c))) |
| 86 | event)) | 86 | event)) |
| 87 | (defun semantic-popup-menu (menu) | 87 | (defun semantic-popup-menu (menu) |
| 88 | "Blockinig version of `popup-menu'" | 88 | "Blocking version of `popup-menu'" |
| 89 | (popup-menu menu) | 89 | (popup-menu menu) |
| 90 | ;; Wait... | 90 | ;; Wait... |
| 91 | (while (popup-up-p) (dispatch-event (next-event)))) | 91 | (while (popup-up-p) (dispatch-event (next-event)))) |
| @@ -139,7 +139,7 @@ | |||
| 139 | 'run-mode-hooks | 139 | 'run-mode-hooks |
| 140 | 'run-hooks)) | 140 | 'run-hooks)) |
| 141 | 141 | ||
| 142 | ;; Fancy compat useage now handled in cedet-compat | 142 | ;; Fancy compat usage now handled in cedet-compat |
| 143 | (defalias 'semantic-subst-char-in-string 'subst-char-in-string) | 143 | (defalias 'semantic-subst-char-in-string 'subst-char-in-string) |
| 144 | ) | 144 | ) |
| 145 | 145 | ||
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index 5fe900452a0..406f2900563 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el | |||
| @@ -646,7 +646,7 @@ be merged recursively." | |||
| 646 | ;; #define FOO(a) foo##a##bar | 646 | ;; #define FOO(a) foo##a##bar |
| 647 | (semantic-lex-spp-symbol-merge (cadr tok))) | 647 | (semantic-lex-spp-symbol-merge (cadr tok))) |
| 648 | (t | 648 | (t |
| 649 | (message "Invalid merge macro ecountered; \ | 649 | (message "Invalid merge macro encountered; \ |
| 650 | will return empty string instead.") | 650 | will return empty string instead.") |
| 651 | ""))) | 651 | ""))) |
| 652 | txt | 652 | txt |
diff --git a/lisp/cedet/semantic/symref/filter.el b/lisp/cedet/semantic/symref/filter.el index c294fd1727e..c6aa48bfbc3 100644 --- a/lisp/cedet/semantic/symref/filter.el +++ b/lisp/cedet/semantic/symref/filter.el | |||
| @@ -101,7 +101,7 @@ tag that contains point, and return that." | |||
| 101 | (semantic-tag-start tag) | 101 | (semantic-tag-start tag) |
| 102 | (semantic-tag-end tag)) | 102 | (semantic-tag-end tag)) |
| 103 | (when (called-interactively-p 'interactive) | 103 | (when (called-interactively-p 'interactive) |
| 104 | (message "Found %d occurances of %s in %.2f seconds" | 104 | (message "Found %d occurrences of %s in %.2f seconds" |
| 105 | Lcount (semantic-tag-name target) | 105 | Lcount (semantic-tag-name target) |
| 106 | (semantic-elapsed-time start (current-time)))) | 106 | (semantic-elapsed-time start (current-time)))) |
| 107 | Lcount))) | 107 | Lcount))) |
diff --git a/lisp/cedet/semantic/tag-ls.el b/lisp/cedet/semantic/tag-ls.el index d6d2c203aa8..094ea554287 100644 --- a/lisp/cedet/semantic/tag-ls.el +++ b/lisp/cedet/semantic/tag-ls.el | |||
| @@ -66,7 +66,7 @@ have values, they must still match." | |||
| 66 | 66 | ||
| 67 | (define-overloadable-function semantic--tag-similar-types-p (tag1 tag2) | 67 | (define-overloadable-function semantic--tag-similar-types-p (tag1 tag2) |
| 68 | "Compare the types of TAG1 and TAG2. | 68 | "Compare the types of TAG1 and TAG2. |
| 69 | This functions can be overriden, for example to compare a fully | 69 | This function can be overridden, for example to compare a fully |
| 70 | qualified with an unqualified type." | 70 | qualified with an unqualified type." |
| 71 | (cond | 71 | (cond |
| 72 | ((and (null (semantic-tag-type tag1)) | 72 | ((and (null (semantic-tag-type tag1)) |
| @@ -80,7 +80,7 @@ qualified with an unqualified type." | |||
| 80 | 80 | ||
| 81 | (defun semantic--tag-similar-types-p-default (tag1 tag2) | 81 | (defun semantic--tag-similar-types-p-default (tag1 tag2) |
| 82 | "Compare the types of TAG1 and TAG2. | 82 | "Compare the types of TAG1 and TAG2. |
| 83 | This functions can be overriden, for example to compare a fully | 83 | This function can be overridden, for example to compare a fully |
| 84 | qualified with an unqualified type." | 84 | qualified with an unqualified type." |
| 85 | (semantic-tag-of-type-p tag1 (semantic-tag-type tag2))) | 85 | (semantic-tag-of-type-p tag1 (semantic-tag-type tag2))) |
| 86 | 86 | ||
| @@ -97,7 +97,7 @@ Modes that override this function can call `semantic--tag-attribute-similar-p-de | |||
| 97 | to do the default equality tests if ATTR is not special for that mode.") | 97 | to do the default equality tests if ATTR is not special for that mode.") |
| 98 | 98 | ||
| 99 | (defun semantic--tag-attribute-similar-p-default (attr value1 value2 ignorable-attributes) | 99 | (defun semantic--tag-attribute-similar-p-default (attr value1 value2 ignorable-attributes) |
| 100 | "For ATTR, VALUE1, VALUE2 and IGNORABLE-ATTRIBUTES, test for similarness." | 100 | "For ATTR, VALUE1, VALUE2 and IGNORABLE-ATTRIBUTES, test for similarity." |
| 101 | (cond | 101 | (cond |
| 102 | ;; Tag sublists require special testing. | 102 | ;; Tag sublists require special testing. |
| 103 | ((and (listp value1) (semantic-tag-p (car value1)) | 103 | ((and (listp value1) (semantic-tag-p (car value1)) |
| @@ -131,7 +131,7 @@ Similar tags that have sub-tags such as arg lists or type members, | |||
| 131 | are similar w/out checking the sub-list of tags. | 131 | are similar w/out checking the sub-list of tags. |
| 132 | Optional argument IGNORABLE-ATTRIBUTES are attributes to ignore while comparing similarity. | 132 | Optional argument IGNORABLE-ATTRIBUTES are attributes to ignore while comparing similarity. |
| 133 | By default, `semantic-tag-similar-ignorable-attributes' is referenced for | 133 | By default, `semantic-tag-similar-ignorable-attributes' is referenced for |
| 134 | attributes, and IGNOREABLE-ATTRIBUTES will augment this list. | 134 | attributes, and IGNORABLE-ATTRIBUTES will augment this list. |
| 135 | 135 | ||
| 136 | Note that even though :name is not an attribute, it can be used to | 136 | Note that even though :name is not an attribute, it can be used to |
| 137 | to indicate lax comparison of names via `semantic--tag-similar-names-p'") | 137 | to indicate lax comparison of names via `semantic--tag-similar-names-p'") |
| @@ -207,7 +207,7 @@ Return the name of the first tag of class `package' in STREAM." | |||
| 207 | 207 | ||
| 208 | (define-overloadable-function semantic-tag-full-name (tag &optional stream-or-buffer) | 208 | (define-overloadable-function semantic-tag-full-name (tag &optional stream-or-buffer) |
| 209 | "Return the fully qualified name of TAG in the package hierarchy. | 209 | "Return the fully qualified name of TAG in the package hierarchy. |
| 210 | STREAM-OR-BUFFER can be anything convertable by `semantic-something-to-stream', | 210 | STREAM-OR-BUFFER can be anything convertible by `semantic-something-to-stream', |
| 211 | but must be a toplevel semantic tag stream that contains TAG. | 211 | but must be a toplevel semantic tag stream that contains TAG. |
| 212 | A Package Hierarchy is defined in UML by the way classes and methods | 212 | A Package Hierarchy is defined in UML by the way classes and methods |
| 213 | are organized on disk. Some languages use this concept such that a | 213 | are organized on disk. Some languages use this concept such that a |
diff --git a/lisp/cedet/semantic/tag.el b/lisp/cedet/semantic/tag.el index 08fe467b367..38166871cea 100644 --- a/lisp/cedet/semantic/tag.el +++ b/lisp/cedet/semantic/tag.el | |||
| @@ -554,7 +554,7 @@ You can identify a faux tag with `semantic-tag-faux-p'" | |||
| 554 | "Set TAG name to NAME." | 554 | "Set TAG name to NAME." |
| 555 | (setcar tag name)) | 555 | (setcar tag name)) |
| 556 | 556 | ||
| 557 | ;;; TAG Proxys | 557 | ;;; TAG Proxies |
| 558 | ;; | 558 | ;; |
| 559 | ;; A new kind of tag is a TAG PROXY. These are tags that have some | 559 | ;; A new kind of tag is a TAG PROXY. These are tags that have some |
| 560 | ;; minimal number of features set, such as name and class, but have a | 560 | ;; minimal number of features set, such as name and class, but have a |
| @@ -570,7 +570,7 @@ two arguments, DATA and TAG. TAG is a proxy tag that needs | |||
| 570 | to be resolved, and DATA is the DATA passed into this function. | 570 | to be resolved, and DATA is the DATA passed into this function. |
| 571 | DATA is data to help resolve the proxy. DATA can be an EIEIO object, | 571 | DATA is data to help resolve the proxy. DATA can be an EIEIO object, |
| 572 | such that FUNCTION is a method. | 572 | such that FUNCTION is a method. |
| 573 | FUNCTION should return a list of tags, preferrably one tag." | 573 | FUNCTION should return a list of tags, preferably one tag." |
| 574 | (let ((sym (make-symbol ":tag-proxy"))) | 574 | (let ((sym (make-symbol ":tag-proxy"))) |
| 575 | (put sym 'proxy-function function) | 575 | (put sym 'proxy-function function) |
| 576 | (put sym 'proxy-data data) | 576 | (put sym 'proxy-data data) |
diff --git a/lisp/emacs-lisp/eieio-base.el b/lisp/emacs-lisp/eieio-base.el index 6677e2c3abb..69fe762887f 100644 --- a/lisp/emacs-lisp/eieio-base.el +++ b/lisp/emacs-lisp/eieio-base.el | |||
| @@ -228,8 +228,8 @@ a file. Optional argument NAME specifies a default file name." | |||
| 228 | "Read a persistent object from FILENAME, and return it. | 228 | "Read a persistent object from FILENAME, and return it. |
| 229 | Signal an error if the object in FILENAME is not a constructor | 229 | Signal an error if the object in FILENAME is not a constructor |
| 230 | for CLASS. Optional ALLOW-SUBCLASS says that it is ok for | 230 | for CLASS. Optional ALLOW-SUBCLASS says that it is ok for |
| 231 | `eieio-peristent-read' to load in subclasses of class instead of | 231 | `eieio-persistent-read' to load in subclasses of class instead of |
| 232 | being pendantic." | 232 | being pedantic." |
| 233 | (unless class | 233 | (unless class |
| 234 | (message "Unsafe call to `eieio-persistent-read'.")) | 234 | (message "Unsafe call to `eieio-persistent-read'.")) |
| 235 | (when (and class (not (class-p class))) | 235 | (when (and class (not (class-p class))) |
| @@ -301,7 +301,7 @@ identified, and needing more object creation." | |||
| 301 | "Validate that in CLASS, the SLOT with PROPOSED-VALUE is good, then fix. | 301 | "Validate that in CLASS, the SLOT with PROPOSED-VALUE is good, then fix. |
| 302 | A limited number of functions, such as quote, list, and valid object | 302 | A limited number of functions, such as quote, list, and valid object |
| 303 | constructor functions are considered valid. | 303 | constructor functions are considered valid. |
| 304 | Secondarilly, any text properties will be stripped from strings." | 304 | Second, any text properties will be stripped from strings." |
| 305 | (cond ((consp proposed-value) | 305 | (cond ((consp proposed-value) |
| 306 | ;; Lists with something in them need special treatment. | 306 | ;; Lists with something in them need special treatment. |
| 307 | (let ((slot-idx (eieio-slot-name-index class nil slot)) | 307 | (let ((slot-idx (eieio-slot-name-index class nil slot)) |
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el index 494d8a87e0e..08b8ced9860 100644 --- a/lisp/emacs-lisp/timer.el +++ b/lisp/emacs-lisp/timer.el | |||
| @@ -204,7 +204,7 @@ timers). If nil, allocate a new cell." | |||
| 204 | "Insert TIMER into `timer-idle-list'. | 204 | "Insert TIMER into `timer-idle-list'. |
| 205 | This arranges to activate TIMER whenever Emacs is next idle. | 205 | This arranges to activate TIMER whenever Emacs is next idle. |
| 206 | If optional argument DONT-WAIT is non-nil, set TIMER to activate | 206 | If optional argument DONT-WAIT is non-nil, set TIMER to activate |
| 207 | immediately \(see beloe\), or at the right time, if Emacs is | 207 | immediately \(see below\), or at the right time, if Emacs is |
| 208 | already idle. | 208 | already idle. |
| 209 | 209 | ||
| 210 | REUSE-CELL, if non-nil, is a cons cell to reuse when inserting | 210 | REUSE-CELL, if non-nil, is a cons cell to reuse when inserting |
diff --git a/lisp/ido.el b/lisp/ido.el index 94818fe57b0..ffa2604d4fb 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -496,7 +496,7 @@ as first char even if `ido-enable-prefix' is nil." | |||
| 496 | ;; See http://debbugs.gnu.org/2042 for more info. | 496 | ;; See http://debbugs.gnu.org/2042 for more info. |
| 497 | (defcustom ido-buffer-disable-smart-matches t | 497 | (defcustom ido-buffer-disable-smart-matches t |
| 498 | "Non-nil means not to re-order matches for buffer switching. | 498 | "Non-nil means not to re-order matches for buffer switching. |
| 499 | By default, ido aranges matches in the following order: | 499 | By default, ido arranges matches in the following order: |
| 500 | 500 | ||
| 501 | full-matches > suffix matches > prefix matches > remaining matches | 501 | full-matches > suffix matches > prefix matches > remaining matches |
| 502 | 502 | ||
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 066ebf3e6e0..ef40c9316cf 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -2079,13 +2079,7 @@ | |||
| 2079 | 2079 | ||
| 2080 | * org-agenda.el (org-agenda-list): Ensures that the list returned | 2080 | * org-agenda.el (org-agenda-list): Ensures that the list returned |
| 2081 | by `org-agenda-add-time-grid-maybe' is appended to ̀rtnall' before | 2081 | by `org-agenda-add-time-grid-maybe' is appended to ̀rtnall' before |
| 2082 | checking if the latter is emtpy. | 2082 | checking if the latter is empty. |
| 2083 | |||
| 2084 | 2012-09-30 Christophe Junke <junke.christophe@gmail.com> (tiny change) | ||
| 2085 | |||
| 2086 | * org-agenda.el (org-agenda-list): Ensure that the list returned | ||
| 2087 | by `org-agenda-add-time-grid-maybe' is appended to `rtnall' before | ||
| 2088 | checking if the latter is emtpy. | ||
| 2089 | 2083 | ||
| 2090 | 2012-09-30 Christophe Rhodes <csr21@cantab.net> (tiny change) | 2084 | 2012-09-30 Christophe Rhodes <csr21@cantab.net> (tiny change) |
| 2091 | 2085 | ||
| @@ -2691,7 +2685,7 @@ | |||
| 2691 | * org-element.el (org-element-paragraph-parser): Fix parsing of | 2685 | * org-element.el (org-element-paragraph-parser): Fix parsing of |
| 2692 | paragraph at the beginning of an item. | 2686 | paragraph at the beginning of an item. |
| 2693 | 2687 | ||
| 2694 | * org.el (org-mode): Set back comment-start-skip so comment-dwin | 2688 | * org.el (org-mode): Set back comment-start-skip so comment-dwim |
| 2695 | can tell a keyword from a comment. | 2689 | can tell a keyword from a comment. |
| 2696 | 2690 | ||
| 2697 | * org.el (org-set-autofill-regexps): Install new comment line | 2691 | * org.el (org-set-autofill-regexps): Install new comment line |
| @@ -2959,7 +2953,7 @@ | |||
| 2959 | 2953 | ||
| 2960 | * org-capture.el (org-capture-fill-template): Expand %<num> escape | 2954 | * org-capture.el (org-capture-fill-template): Expand %<num> escape |
| 2961 | sequences into text entered for <num>'th %^{PROMPT} escape. | 2955 | sequences into text entered for <num>'th %^{PROMPT} escape. |
| 2962 | 2956 | ||
| 2963 | * org-capture.el (org-capture-fill-template): Fixed regexp for | 2957 | * org-capture.el (org-capture-fill-template): Fixed regexp for |
| 2964 | %<n> expandos to match any positive integer. | 2958 | %<n> expandos to match any positive integer. |
| 2965 | (org-capture-templates): Updated docstring accordingly. | 2959 | (org-capture-templates): Updated docstring accordingly. |
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 97241b6ac65..32fecde2af0 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -823,7 +823,7 @@ because you will take care of it on the day when scheduled." | |||
| 823 | :group 'org-agenda-daily/weekly | 823 | :group 'org-agenda-daily/weekly |
| 824 | :version "24.1" | 824 | :version "24.1" |
| 825 | :type '(choice | 825 | :type '(choice |
| 826 | (const :tag "Alwas show prewarning" nil) | 826 | (const :tag "Always show prewarning" nil) |
| 827 | (const :tag "Remove prewarning if entry is scheduled" t) | 827 | (const :tag "Remove prewarning if entry is scheduled" t) |
| 828 | (integer :tag "Restart prewarning N days before deadline"))) | 828 | (integer :tag "Restart prewarning N days before deadline"))) |
| 829 | 829 | ||
| @@ -2837,7 +2837,7 @@ L Timeline for current buffer # List stuck projects (!=configure) | |||
| 2837 | (widen) | 2837 | (widen) |
| 2838 | (let ((inhibit-read-only t)) | 2838 | (let ((inhibit-read-only t)) |
| 2839 | (add-text-properties (point-min) (point-max) | 2839 | (add-text-properties (point-min) (point-max) |
| 2840 | `(org-serie t org-serie-redo-cmd ,redo))) | 2840 | `(org-series t org-series-redo-cmd ,redo))) |
| 2841 | (setq org-agenda-redo-command redo) | 2841 | (setq org-agenda-redo-command redo) |
| 2842 | (goto-char (point-min))) | 2842 | (goto-char (point-min))) |
| 2843 | (org-agenda-fit-window-to-buffer) | 2843 | (org-agenda-fit-window-to-buffer) |
| @@ -4019,7 +4019,7 @@ given in `org-agenda-start-on-weekday'." | |||
| 4019 | `(org-agenda-type agenda | 4019 | `(org-agenda-type agenda |
| 4020 | org-last-args (,arg ,start-day ,span) | 4020 | org-last-args (,arg ,start-day ,span) |
| 4021 | org-redo-cmd ,org-agenda-redo-command | 4021 | org-redo-cmd ,org-agenda-redo-command |
| 4022 | org-serie-cmd ,org-cmd)) | 4022 | org-series-cmd ,org-cmd)) |
| 4023 | (if (eq org-agenda-show-log-scoped 'clockcheck) | 4023 | (if (eq org-agenda-show-log-scoped 'clockcheck) |
| 4024 | (org-agenda-show-clocking-issues)) | 4024 | (org-agenda-show-clocking-issues)) |
| 4025 | (org-agenda-finalize) | 4025 | (org-agenda-finalize) |
| @@ -4324,7 +4324,7 @@ in `org-agenda-text-search-extra-files'." | |||
| 4324 | `(org-agenda-type search | 4324 | `(org-agenda-type search |
| 4325 | org-last-args (,todo-only ,string ,edit-at) | 4325 | org-last-args (,todo-only ,string ,edit-at) |
| 4326 | org-redo-cmd ,org-agenda-redo-command | 4326 | org-redo-cmd ,org-agenda-redo-command |
| 4327 | org-serie-cmd ,org-cmd)) | 4327 | org-series-cmd ,org-cmd)) |
| 4328 | (org-agenda-finalize) | 4328 | (org-agenda-finalize) |
| 4329 | (setq buffer-read-only t)))) | 4329 | (setq buffer-read-only t)))) |
| 4330 | 4330 | ||
| @@ -4414,7 +4414,7 @@ for a keyword. A numeric prefix directly selects the Nth keyword in | |||
| 4414 | `(org-agenda-type todo | 4414 | `(org-agenda-type todo |
| 4415 | org-last-args ,arg | 4415 | org-last-args ,arg |
| 4416 | org-redo-cmd ,org-agenda-redo-command | 4416 | org-redo-cmd ,org-agenda-redo-command |
| 4417 | org-serie-cmd ,org-cmd)) | 4417 | org-series-cmd ,org-cmd)) |
| 4418 | (org-agenda-finalize) | 4418 | (org-agenda-finalize) |
| 4419 | (setq buffer-read-only t)))) | 4419 | (setq buffer-read-only t)))) |
| 4420 | 4420 | ||
| @@ -4499,7 +4499,7 @@ The prefix arg TODO-ONLY limits the search to TODO entries." | |||
| 4499 | `(org-agenda-type tags | 4499 | `(org-agenda-type tags |
| 4500 | org-last-args (,todo-only ,match) | 4500 | org-last-args (,todo-only ,match) |
| 4501 | org-redo-cmd ,org-agenda-redo-command | 4501 | org-redo-cmd ,org-agenda-redo-command |
| 4502 | org-serie-cmd ,org-cmd)) | 4502 | org-series-cmd ,org-cmd)) |
| 4503 | (org-agenda-finalize) | 4503 | (org-agenda-finalize) |
| 4504 | (setq buffer-read-only t)))) | 4504 | (setq buffer-read-only t)))) |
| 4505 | 4505 | ||
| @@ -6583,7 +6583,7 @@ Org-mode buffers visited directly by the user will not be touched." | |||
| 6583 | (org-agenda-Quit)) | 6583 | (org-agenda-Quit)) |
| 6584 | 6584 | ||
| 6585 | (defun org-agenda-kill-all-agenda-buffers () | 6585 | (defun org-agenda-kill-all-agenda-buffers () |
| 6586 | "Kill all buffers in `org-agena-mode'. | 6586 | "Kill all buffers in `org-agenda-mode'. |
| 6587 | This is used when toggling sticky agendas. You can also explicitly invoke it | 6587 | This is used when toggling sticky agendas. You can also explicitly invoke it |
| 6588 | with `C-c a C-k'." | 6588 | with `C-c a C-k'." |
| 6589 | (interactive) | 6589 | (interactive) |
| @@ -6623,20 +6623,20 @@ in the agenda." | |||
| 6623 | (lprops (get 'org-agenda-redo-command 'org-lprops)) | 6623 | (lprops (get 'org-agenda-redo-command 'org-lprops)) |
| 6624 | (redo-cmd (get-text-property p 'org-redo-cmd)) | 6624 | (redo-cmd (get-text-property p 'org-redo-cmd)) |
| 6625 | (last-args (get-text-property p 'org-last-args)) | 6625 | (last-args (get-text-property p 'org-last-args)) |
| 6626 | (org-agenda-overriding-cmd (get-text-property p 'org-serie-cmd)) | 6626 | (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd)) |
| 6627 | (org-agenda-overriding-cmd-arguments | 6627 | (org-agenda-overriding-cmd-arguments |
| 6628 | (unless (eq all t) | 6628 | (unless (eq all t) |
| 6629 | (cond ((listp last-args) | 6629 | (cond ((listp last-args) |
| 6630 | (cons (or cpa (car last-args)) (cdr last-args))) | 6630 | (cons (or cpa (car last-args)) (cdr last-args))) |
| 6631 | ((stringp last-args) | 6631 | ((stringp last-args) |
| 6632 | last-args)))) | 6632 | last-args)))) |
| 6633 | (serie-redo-cmd (get-text-property p 'org-serie-redo-cmd))) | 6633 | (series-redo-cmd (get-text-property p 'org-series-redo-cmd))) |
| 6634 | (put 'org-agenda-tag-filter :preset-filter nil) | 6634 | (put 'org-agenda-tag-filter :preset-filter nil) |
| 6635 | (put 'org-agenda-category-filter :preset-filter nil) | 6635 | (put 'org-agenda-category-filter :preset-filter nil) |
| 6636 | (and cols (org-columns-quit)) | 6636 | (and cols (org-columns-quit)) |
| 6637 | (message "Rebuilding agenda buffer...") | 6637 | (message "Rebuilding agenda buffer...") |
| 6638 | (if serie-redo-cmd | 6638 | (if series-redo-cmd |
| 6639 | (eval serie-redo-cmd) | 6639 | (eval series-redo-cmd) |
| 6640 | (org-let lprops '(eval redo-cmd))) | 6640 | (org-let lprops '(eval redo-cmd))) |
| 6641 | (setq org-agenda-undo-list nil | 6641 | (setq org-agenda-undo-list nil |
| 6642 | org-agenda-pending-undo-list nil) | 6642 | org-agenda-pending-undo-list nil) |
| @@ -7035,7 +7035,7 @@ Negative selection means regexp must not match for selection of an entry." | |||
| 7035 | (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt)) | 7035 | (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt)) |
| 7036 | (text-property-any (point-min) (point-max) 'org-today t) | 7036 | (text-property-any (point-min) (point-max) 'org-today t) |
| 7037 | (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda) | 7037 | (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda) |
| 7038 | (and (get-text-property (min (1- (point-max)) (point)) 'org-serie) | 7038 | (and (get-text-property (min (1- (point-max)) (point)) 'org-series) |
| 7039 | (org-agenda-goto-block-beginning)) | 7039 | (org-agenda-goto-block-beginning)) |
| 7040 | (point-min)))) | 7040 | (point-min)))) |
| 7041 | 7041 | ||
| @@ -7090,7 +7090,7 @@ With prefix ARG, go forward that many times the current span." | |||
| 7090 | ;; `cmd' may have been set by `org-agenda-run-series' which | 7090 | ;; `cmd' may have been set by `org-agenda-run-series' which |
| 7091 | ;; uses `org-agenda-overriding-cmd' to decide whether | 7091 | ;; uses `org-agenda-overriding-cmd' to decide whether |
| 7092 | ;; overriding is allowed for `cmd' | 7092 | ;; overriding is allowed for `cmd' |
| 7093 | (get-text-property (min (1- (point-max)) (point)) 'org-serie-cmd)) | 7093 | (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd)) |
| 7094 | (org-agenda-overriding-arguments | 7094 | (org-agenda-overriding-arguments |
| 7095 | (list (car args) sd span))) | 7095 | (list (car args) sd span))) |
| 7096 | (org-agenda-redo) | 7096 | (org-agenda-redo) |
| @@ -7183,7 +7183,7 @@ SPAN may be `day', `week', `month', `year'." | |||
| 7183 | org-starting-day)) | 7183 | org-starting-day)) |
| 7184 | (sd (org-agenda-compute-starting-span sd span n)) | 7184 | (sd (org-agenda-compute-starting-span sd span n)) |
| 7185 | (org-agenda-overriding-cmd | 7185 | (org-agenda-overriding-cmd |
| 7186 | (get-text-property (min (1- (point-max)) (point)) 'org-serie-cmd)) | 7186 | (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd)) |
| 7187 | (org-agenda-overriding-arguments | 7187 | (org-agenda-overriding-arguments |
| 7188 | (list (car args) sd span))) | 7188 | (list (car args) sd span))) |
| 7189 | (org-agenda-redo) | 7189 | (org-agenda-redo) |
diff --git a/lisp/org/org-element.el b/lisp/org/org-element.el index 3d67ae7892a..8b44d4936f5 100644 --- a/lisp/org/org-element.el +++ b/lisp/org/org-element.el | |||
| @@ -3924,7 +3924,7 @@ Return Org syntax as a string." | |||
| 3924 | (and (eq type 'paragraph) | 3924 | (and (eq type 'paragraph) |
| 3925 | (equal data (car (org-element-contents parent))) | 3925 | (equal data (car (org-element-contents parent))) |
| 3926 | (memq (org-element-type parent) | 3926 | (memq (org-element-type parent) |
| 3927 | '(footnote-definiton item)))))) | 3927 | '(footnote-definition item)))))) |
| 3928 | ""))) | 3928 | ""))) |
| 3929 | (funcall (intern (format "org-element-%s-interpreter" type)) | 3929 | (funcall (intern (format "org-element-%s-interpreter" type)) |
| 3930 | data | 3930 | data |
diff --git a/lisp/org/org-faces.el b/lisp/org/org-faces.el index cfa4c1c30a5..51aead1b8bb 100644 --- a/lisp/org/org-faces.el +++ b/lisp/org/org-faces.el | |||
| @@ -293,7 +293,7 @@ column view defines special faces for each outline level. See the file | |||
| 293 | (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) | 293 | (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) |
| 294 | (t (:inverse-video t)))) | 294 | (t (:inverse-video t)))) |
| 295 | "Face for highlighting the calendar day when using `org-read-date'. | 295 | "Face for highlighting the calendar day when using `org-read-date'. |
| 296 | Using a bold face here might cause discrepencies while displaying the | 296 | Using a bold face here might cause discrepancies while displaying the |
| 297 | calendar." | 297 | calendar." |
| 298 | :group 'org-faces) | 298 | :group 'org-faces) |
| 299 | 299 | ||
diff --git a/lisp/org/org-remember.el b/lisp/org/org-remember.el index 7a1eb7762de..dd493749295 100644 --- a/lisp/org/org-remember.el +++ b/lisp/org/org-remember.el | |||
| @@ -64,7 +64,7 @@ and `org-remember-default-headline'. To force prompting anyway, use | |||
| 64 | \\[universal-argument] \\[org-remember-finalize] to file the note. | 64 | \\[universal-argument] \\[org-remember-finalize] to file the note. |
| 65 | 65 | ||
| 66 | When this variable is nil, \\[org-remember-finalize] gives you the prompts, and | 66 | When this variable is nil, \\[org-remember-finalize] gives you the prompts, and |
| 67 | \\[universal-argument] \\[org-remember-finalize] triggers the fasttrack." | 67 | \\[universal-argument] \\[org-remember-finalize] triggers the fast track." |
| 68 | :group 'org-remember | 68 | :group 'org-remember |
| 69 | :type 'boolean) | 69 | :type 'boolean) |
| 70 | 70 | ||
diff --git a/lisp/proced.el b/lisp/proced.el index be6cae2ef08..ec41ce65ef5 100644 --- a/lisp/proced.el +++ b/lisp/proced.el | |||
| @@ -1784,7 +1784,7 @@ supported but discouraged. It will be removed in a future version of Emacs." | |||
| 1784 | process-alist)))) | 1784 | process-alist)))) |
| 1785 | 1785 | ||
| 1786 | (unless (and signal process-alist) | 1786 | (unless (and signal process-alist) |
| 1787 | ;; Discouraged usge (supported for backward compatibility): | 1787 | ;; Discouraged usage (supported for backward compatibility): |
| 1788 | ;; The new calling sequence separates more cleanly between the parts | 1788 | ;; The new calling sequence separates more cleanly between the parts |
| 1789 | ;; of the code required for interactive and noninteractive calls so that | 1789 | ;; of the code required for interactive and noninteractive calls so that |
| 1790 | ;; the command can be used more flexibly in noninteractive ways, too. | 1790 | ;; the command can be used more flexibly in noninteractive ways, too. |
diff --git a/lisp/profiler.el b/lisp/profiler.el index efa23e7aec0..5e605957833 100644 --- a/lisp/profiler.el +++ b/lisp/profiler.el | |||
| @@ -495,7 +495,7 @@ return it." | |||
| 495 | t)))))) | 495 | t)))))) |
| 496 | 496 | ||
| 497 | (defun profiler-report-collapse-entry () | 497 | (defun profiler-report-collapse-entry () |
| 498 | "Collpase entry at point." | 498 | "Collapse entry at point." |
| 499 | (interactive) | 499 | (interactive) |
| 500 | (save-excursion | 500 | (save-excursion |
| 501 | (beginning-of-line) | 501 | (beginning-of-line) |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index b917d3f6429..d5aa73f5ef3 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -502,7 +502,7 @@ The type returned can be `comment', `string' or `paren'." | |||
| 502 | (and | 502 | (and |
| 503 | ;; Match even number of backslashes. | 503 | ;; Match even number of backslashes. |
| 504 | (or (not (any ?\\ ?\' ?\")) point | 504 | (or (not (any ?\\ ?\' ?\")) point |
| 505 | ;; Quotes might be preceeded by a escaped quote. | 505 | ;; Quotes might be preceded by a escaped quote. |
| 506 | (and (or (not (any ?\\)) point) ?\\ | 506 | (and (or (not (any ?\\)) point) ?\\ |
| 507 | (* ?\\ ?\\) (any ?\' ?\"))) | 507 | (* ?\\ ?\\) (any ?\' ?\"))) |
| 508 | (* ?\\ ?\\) | 508 | (* ?\\ ?\\) |
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 86ffdf535a0..8c4167b6724 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -5148,7 +5148,7 @@ This sets up the appropriate Verilog mode environment, removes | |||
| 5148 | whitespace with \\[verilog-delete-trailing-whitespace] on all | 5148 | whitespace with \\[verilog-delete-trailing-whitespace] on all |
| 5149 | command-line files, and saves the buffers." | 5149 | command-line files, and saves the buffers." |
| 5150 | (unless noninteractive | 5150 | (unless noninteractive |
| 5151 | (error "Use verilog-batch-delete-trailing-whitepace only with --batch")) ;; Otherwise we'd mess up buffer modes | 5151 | (error "Use verilog-batch-delete-trailing-whitespace only with --batch")) ;; Otherwise we'd mess up buffer modes |
| 5152 | (verilog-batch-execute-func `verilog-delete-trailing-whitespace)) | 5152 | (verilog-batch-execute-func `verilog-delete-trailing-whitespace)) |
| 5153 | 5153 | ||
| 5154 | (defun verilog-batch-diff-auto () | 5154 | (defun verilog-batch-diff-auto () |
| @@ -12161,7 +12161,7 @@ Limitations: | |||
| 12161 | Interface names must be resolvable to filenames. See `verilog-auto-inst'. | 12161 | Interface names must be resolvable to filenames. See `verilog-auto-inst'. |
| 12162 | 12162 | ||
| 12163 | As with other autos, any inputs/outputs declared in the module | 12163 | As with other autos, any inputs/outputs declared in the module |
| 12164 | will suppress the AUTO from redeclarating an inputs/outputs by | 12164 | will suppress the AUTO from redeclaring an input/output by |
| 12165 | the same name. | 12165 | the same name. |
| 12166 | 12166 | ||
| 12167 | An example: | 12167 | An example: |
diff --git a/lisp/subr.el b/lisp/subr.el index 8dfe78d8c75..b0ffb0db746 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -3170,7 +3170,7 @@ in which case `save-window-excursion' cannot help." | |||
| 3170 | (set-window-hscroll window 0) | 3170 | (set-window-hscroll window 0) |
| 3171 | ;; Don't try this with NOFORCE non-nil! | 3171 | ;; Don't try this with NOFORCE non-nil! |
| 3172 | (set-window-start window (point-min) t) | 3172 | (set-window-start window (point-min) t) |
| 3173 | ;; This hould not be necessary. | 3173 | ;; This should not be necessary. |
| 3174 | (set-window-point window (point-min)) | 3174 | (set-window-point window (point-min)) |
| 3175 | ;; Run `temp-buffer-show-hook', with the chosen window selected. | 3175 | ;; Run `temp-buffer-show-hook', with the chosen window selected. |
| 3176 | (with-selected-window window | 3176 | (with-selected-window window |
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 7052dcf473e..bdee0fcf1d4 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -2466,7 +2466,7 @@ information about your RefTeX version and configuration." | |||
| 2466 | "Remember to cover the basics, that is, what you expected to happen and | 2466 | "Remember to cover the basics, that is, what you expected to happen and |
| 2467 | what in fact did happen. | 2467 | what in fact did happen. |
| 2468 | 2468 | ||
| 2469 | Check if the bug is reproducable with an up-to-date version of | 2469 | Check if the bug is reproducible with an up-to-date version of |
| 2470 | RefTeX available from http://www.gnu.org/software/auctex/. | 2470 | RefTeX available from http://www.gnu.org/software/auctex/. |
| 2471 | 2471 | ||
| 2472 | If the bug is triggered by a specific \(La\)TeX file, you should try | 2472 | If the bug is triggered by a specific \(La\)TeX file, you should try |
diff --git a/lisp/window.el b/lisp/window.el index 811b1781b4c..41af7f9f44b 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -701,7 +701,7 @@ SIDE. Return the new window, nil if its creation window failed." | |||
| 701 | (set-window-parameter new 'delete-window 'delete-side-window) | 701 | (set-window-parameter new 'delete-window 'delete-side-window) |
| 702 | ;; Auto-adjust height/width of new window unless a size has been | 702 | ;; Auto-adjust height/width of new window unless a size has been |
| 703 | ;; explicitly requested. | 703 | ;; explicitly requested. |
| 704 | (unless (if left-or-right | 704 | (unless (if left-or-right |
| 705 | (cdr (assq 'window-width alist)) | 705 | (cdr (assq 'window-width alist)) |
| 706 | (cdr (assq 'window-height alist))) | 706 | (cdr (assq 'window-height alist))) |
| 707 | (setq alist | 707 | (setq alist |
| @@ -5615,7 +5615,7 @@ the selected one." | |||
| 5615 | buffer window 'reuse alist display-buffer-mark-dedicated))))) | 5615 | buffer window 'reuse alist display-buffer-mark-dedicated))))) |
| 5616 | 5616 | ||
| 5617 | (defun display-buffer-at-bottom (buffer alist) | 5617 | (defun display-buffer-at-bottom (buffer alist) |
| 5618 | "Try displaying BUFFER in a window at the botom of the selected frame. | 5618 | "Try displaying BUFFER in a window at the bottom of the selected frame. |
| 5619 | This either splits the window at the bottom of the frame or the | 5619 | This either splits the window at the bottom of the frame or the |
| 5620 | frame's root window, or reuses an existing window at the bottom | 5620 | frame's root window, or reuses an existing window at the bottom |
| 5621 | of the selected frame." | 5621 | of the selected frame." |