From 20db1522fe719b5de3f7cf9b373183d4b3437e94 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 24 Nov 2011 02:58:14 +0100 Subject: [PATCH] Fix typos. --- ChangeLog | 4 ++ configure.in | 2 +- doc/emacs/ChangeLog | 4 ++ doc/emacs/display.texi | 2 +- lisp/ChangeLog | 17 ++++++ lisp/ChangeLog.3 | 2 +- lisp/ChangeLog.9 | 2 +- lisp/allout.el | 94 ++++++++++++++++----------------- lisp/cedet/ChangeLog | 4 ++ lisp/cedet/semantic/bovine/c.el | 2 +- lisp/cedet/semantic/lex-spp.el | 2 +- lisp/gnus/ChangeLog | 8 ++- lisp/gnus/gnus-group.el | 2 +- lisp/mh-e/ChangeLog.1 | 2 +- lisp/net/ange-ftp.el | 2 +- lisp/obsolete/fast-lock.el | 2 +- lisp/org/ChangeLog | 4 ++ lisp/org/ob.el | 2 +- lisp/progmodes/cc-cmds.el | 2 +- lisp/progmodes/gud.el | 2 +- lisp/progmodes/verilog-mode.el | 2 +- lisp/textmodes/bibtex.el | 4 +- lisp/vc/cvs-status.el | 2 +- lisp/wdired.el | 2 +- lisp/window.el | 2 +- lwlib/lwlib.c | 6 +-- src/ChangeLog.11 | 2 +- src/msdos.c | 2 +- 28 files changed, 110 insertions(+), 73 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0232a3f841..a3cfbd55db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-11-24 Juanma Barranquero + + * configure.in (HAVE_XPM): Fix typo. + 2011-11-22 Glenn Morris * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can diff --git a/configure.in b/configure.in index 890b20e7b3..8b70ed5990 100644 --- a/configure.in +++ b/configure.in @@ -2436,7 +2436,7 @@ no_return_alloc_pixels fi if test "${HAVE_XPM}" = "yes"; then - AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm libary (-lXpm).]) + AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm library (-lXpm).]) LIBXPM=-lXpm fi fi diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index e27c778679..abf0c86d1c 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,3 +1,7 @@ +2011-11-24 Juanma Barranquero + + * display.texi (Font Lock): Fix typo. + 2011-11-24 Glenn Morris * rmail.texi (Rmail Output): diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi index 8995b1242b..a7ecc0dc55 100644 --- a/doc/emacs/display.texi +++ b/doc/emacs/display.texi @@ -762,7 +762,7 @@ relies on analysis of the syntactic structure of the buffer text. For the sake of speed, some modes, including Lisp mode, rely on a special convention: an open-parenthesis or open-brace in the leftmost column always defines the beginning of a defun, and is thus always outside -any string or comment. Therefore, you should avoid placing a an +any string or comment. Therefore, you should avoid placing an open-parenthesis or open-brace in the leftmost column, if it is inside a string or comment. @xref{Left Margin Paren}, for details. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8ba307a377..8902a714ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,20 @@ +2011-11-24 Juanma Barranquero + + * allout.el (allout-setup, allout-auto-save-temporarily-disabled) + (allout-lead-with-comment-string, allout-structure-deleted-hook) + (allout-mode, allout-chart-subtree, allout-hotspot-key-handler) + (allout-rebullet-heading, allout-open-sibtopic) + (allout-toggle-current-subtree-encryption) + (allout-toggle-subtree-encryption, allout-encrypt-string) + (allout-next-topic-pending-encryption, allout-adjust-file-variable) + (allout-distinctive-bullets-string, allout-auto-activation): + * window.el (window-normalize-buffer-to-display): + * progmodes/verilog-mode.el (verilog-batch-indent): + * textmodes/bibtex.el (bibtex-field-braces-opt) + (bibtex-field-strings-opt): + * vc/cvs-status.el (cvs-tree-merge): + Fix typos. + 2011-11-23 Michael Albinus * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind diff --git a/lisp/ChangeLog.3 b/lisp/ChangeLog.3 index 2b384d7916..57a9a7b026 100644 --- a/lisp/ChangeLog.3 +++ b/lisp/ChangeLog.3 @@ -11362,7 +11362,7 @@ * blackbox.el (bb-init-board): Use (random 8) to get # in [0,7]. * dissociate.el: Likewise. * fill.el (justify-current-line): Likewise. - * flame.el (define-element, psychoanalize-flamer): Likewise. + * flame.el (define-element, psychoanalyze-flamer): Likewise. * yow.el (yow): Likewise. * doctor.el: Use (random N), not (random-range N). (random-range): Function deleted. diff --git a/lisp/ChangeLog.9 b/lisp/ChangeLog.9 index 7419ccc124..1c38b4d9ac 100644 --- a/lisp/ChangeLog.9 +++ b/lisp/ChangeLog.9 @@ -2021,7 +2021,7 @@ newbuffile out of the loop, in the newbuffile-nd local var. Use dolist (cosmetic change). Compute the proposed name for the most common case and cache it in the fourth place in the item. - (uniquify-rationalize-file-buffer-names): Used to return a a list + (uniquify-rationalize-file-buffer-names): Used to return a list of buffer whose name was changed, but that return value was never used. (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on the cached proposed name, does much less consing and is quicker. diff --git a/lisp/allout.el b/lisp/allout.el index e699c85c7b..47db77f2bb 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -279,7 +279,7 @@ Intended to be used as the `allout-auto-activation' :set function." ;;;_ > allout-setup () ;;;###autoload (defun allout-setup () - "Do fundamental emacs session for allout auto-activation. + "Do fundamental Emacs session for allout auto-activation. Establishes allout processing as part of visiting a file if `allout-auto-activation' is non-nil, or removes it otherwise. @@ -298,7 +298,7 @@ Control whether and how allout outline mode is automatically activated when files are visited with non-nil buffer-specific file variable `allout-layout'. -When allout-auto-activation is \"On\" \(t), allout mode is +When allout-auto-activation is \"On\" (t), allout mode is activated in buffers with non-nil `allout-layout', and the specified layout is applied. @@ -560,7 +560,7 @@ of this var to take effect." These bullets are distinguish topics with particular character. They are not used by default in the topic creation routines, but are offered as options when you modify topic creation with a -universal argument \(\\[universal-argument]), or during rebulleting \(\\[allout-rebullet-current-heading]). +universal argument (\\[universal-argument]), or during rebulleting (\\[allout-rebullet-current-heading]). Distinctive bullets are not cycled when topics are shifted or otherwise automatically rebulleted, so their marking is @@ -844,7 +844,7 @@ such topics are encrypted.)" (defvar allout-auto-save-temporarily-disabled nil "True while topic encryption is pending and auto-saving was active. -The value of buffer-saved-size at the time of decryption is used, +The value of `buffer-saved-size' at the time of decryption is used, for restoring when all encryptions are established.") (defvar allout-just-did-undo nil "True just after undo commands, until allout-post-command-business.") @@ -910,7 +910,7 @@ For details, see `allout-toggle-current-subtree-encryption's docstring." (defvar allout-layout nil ; LEAVE GLOBAL VALUE NIL -- see docstring. "Buffer-specific setting for allout layout. -In buffers where this is non-nil \(and if `allout-auto-activation' +In buffers where this is non-nil (and if `allout-auto-activation' has been customized to enable this behavior), `allout-mode' will be automatically activated. The layout dictated by the value will be used to set the initial exposure when `allout-mode' is activated. @@ -1037,7 +1037,7 @@ suitably economical.") (defun allout-lead-with-comment-string (&optional header-lead) "Set the topic-header leading string to specified string. -Useful when for encapsulating outline structure in programming +Useful for encapsulating outline structure in programming language comments. Returns the leading string." (interactive "P") @@ -1440,7 +1440,7 @@ Functions on the hook must take two arguments: - DEPTH -- integer indicating the depth of the subtree that was deleted. - REMOVED-FROM -- integer indicating the point where the subtree was removed. -Some edits that remove or invalidate items may missed by this hook: +Some edits that remove or invalidate items may be missed by this hook: specifically edits that native allout routines do not control. This hook might be invoked multiple times by a single command.") @@ -1472,10 +1472,10 @@ that was affected by the undo. Functions on the hook should not require any arguments.") ;;;_ = allout-outside-normal-auto-fill-function (defvar allout-outside-normal-auto-fill-function nil - "Value of normal-auto-fill-function outside of allout mode. + "Value of `normal-auto-fill-function' outside of allout mode. -Used by allout-auto-fill to do the mandated normal-auto-fill-function -wrapped within allout's automatic fill-prefix setting.") +Used by `allout-auto-fill' to do the mandated `normal-auto-fill-function' +wrapped within allout's automatic `fill-prefix' setting.") (make-variable-buffer-local 'allout-outside-normal-auto-fill-function) ;;;_ = prevent redundant activation by desktop mode: (add-to-list 'desktop-minor-mode-handlers '(allout-mode . nil)) @@ -1576,7 +1576,7 @@ message if an error is encountered. The message will serve as a non-nil return on `write-contents-functions' to prevent saving of the buffer while it has decrypted content. -This behavior depends on emacs versions that implement the +This behavior depends on Emacs versions that implement the `write-contents-functions' hook." (if (or (not (allout-mode-p)) @@ -1627,7 +1627,7 @@ and the place for the cursor after the decryption is done." ) ;;;_ > allout-called-interactively-p () (defmacro allout-called-interactively-p () - "A version of called-interactively-p independent of emacs version." + "A version of `called-interactively-p' independent of Emacs version." ;; ... to ease maintenance of allout without betraying deprecation. (if (equal (subr-arity (symbol-function 'called-interactively-p)) '(0 . 0)) @@ -1712,7 +1712,7 @@ Allout outline mode is a minor mode that provides extensive outline oriented formatting and manipulation. It enables structural editing of outlines, as well as navigation and exposure. It also is specifically aimed at accommodating -syntax-sensitive text like programming languages. \(For example, +syntax-sensitive text like programming languages. (For example, see the allout code itself, which is organized as an allout outline.) @@ -1733,7 +1733,7 @@ Below is a description of the key bindings, and then description of special `allout-mode' features and terminology. See also the outline menubar additions for quick reference to many of the features. Customize `allout-auto-activation' to prepare your -emacs session for automatic activation of `allout-mode'. +Emacs session for automatic activation of `allout-mode'. The bindings are those listed in `allout-prefixed-keybindings' and `allout-unprefixed-keybindings'. We recommend customizing @@ -1781,7 +1781,7 @@ the HOT-SPOT Operation section. \\[allout-rebullet-current-heading] `allout-rebullet-current-heading' Prompt for alternate bullet for current topic \\[allout-rebullet-topic] `allout-rebullet-topic' Reconcile bullets of topic and - its' offspring -- distinctive bullets are not changed, others + its offspring -- distinctive bullets are not changed, others are alternated according to nesting depth. \\[allout-number-siblings] `allout-number-siblings' Number bullets of topic and siblings -- the offspring are not affected. @@ -1791,12 +1791,12 @@ the HOT-SPOT Operation section. ---------------------------------- \\[allout-kill-topic] `allout-kill-topic' Kill current topic, including offspring. \\[allout-copy-topic-as-kill] `allout-copy-topic-as-kill' Copy current topic, including offspring. -\\[allout-kill-line] `allout-kill-line' kill-line, attending to outline structure. +\\[allout-kill-line] `allout-kill-line' Kill line, attending to outline structure. \\[allout-copy-line-as-kill] `allout-copy-line-as-kill' Copy line but don't delete it. \\[allout-yank] `allout-yank' Yank, adjusting depth of yanked topic to depth of heading if yanking into bare topic heading (ie, prefix sans text). -\\[allout-yank-pop] `allout-yank-pop' Is to allout-yank as yank-pop is to yank +\\[allout-yank-pop] `allout-yank-pop' Is to `allout-yank' as `yank-pop' is to `yank'. Topic-oriented Encryption: ------------------------- @@ -1836,7 +1836,7 @@ for a save, it is automatically decrypted for continued editing. NOTE: A few GnuPG v2 versions improperly preserve incorrect symmetric decryption keys, preventing entry of the correct key on subsequent decryption attempts until the cache times-out. That -can take several minutes. \(Decryption of other entries is not +can take several minutes. (Decryption of other entries is not affected.) Upgrade your EasyPG version, if you can, and you can deliberately clear your gpg-agent's cache by sending it a '-HUP' signal. @@ -1877,7 +1877,7 @@ hooks, by which independent code can cooperate with allout without changes to the allout core. Here are key ones: `allout-mode-hook' -`allout-mode-deactivate-hook' \(deprecated) +`allout-mode-deactivate-hook' (deprecated) `allout-mode-off-hook' `allout-exposure-change-hook' `allout-structure-added-hook' @@ -1939,7 +1939,7 @@ PREFIX-LEAD: When the PREFIX-LEAD is set to the comment-string of a programming language, outline structuring can be embedded in program code without interfering with processing of the text - (by emacs or the language processor) as program code. This + (by Emacs or the language processor) as program code. This setting happens automatically when allout mode is used in programming-mode buffers. See `allout-use-mode-specific-leader' docstring for more detail. @@ -1951,7 +1951,7 @@ BULLET: A character at the end of the ITEM PREFIX, it must be one of `allout-distinctive-bullets-string'. When creating a TOPIC, plain BULLETs are by default used, according to the DEPTH of the TOPIC. Choice among the distinctive BULLETs is offered when you - provide a universal argugment \(\\[universal-argument]) to the + provide a universal argument (\\[universal-argument]) to the TOPIC creation command, or when explictly rebulleting a TOPIC. The significance of the various distinctive bullets is purely by convention. See the documentation for the above bullet strings for @@ -2250,7 +2250,7 @@ to return the current prefix." allout-recent-prefix-end)) ;;;_ > allout-recent-bullet () (defmacro allout-recent-bullet () - "Like allout-recent-prefix, but returns bullet of last encountered prefix. + "Like `allout-recent-prefix', but returns bullet of last encountered prefix. All outline functions which directly do string matches to assess headings set the variables `allout-recent-prefix-beginning' and @@ -2625,13 +2625,13 @@ The remaining optional args are for internal use by the function. Point is left at the end of the subtree. Charts are used to capture outline structure, so that outline-altering -routines need assess the structure only once, and then use the chart +routines need to assess the structure only once, and then use the chart for their elaborate manipulations. The chart entries for the topics are in reverse order, so the last topic is listed first. The entry for each topic consists of an integer indicating the point at the beginning of the topic -prefix. Charts for offspring consists of a list containing, +prefix. Charts for offspring consist of a list containing, recursively, the charts for the respective subtopics. The chart for a topics' offspring precedes the entry for the topic itself. @@ -3186,7 +3186,7 @@ Presumes point is at the start of a topic prefix." (if (allout-called-interactively-p) (allout-end-of-prefix))))) ;;;_ > allout-next-visible-heading (arg) (defun allout-next-visible-heading (arg) - "Move to the next ARG'th visible heading line, backward if arg is negative. + "Move to the next ARGth visible heading line, backward if ARG is negative. Move to buffer limit in indicated direction if headings are exhausted." @@ -3388,8 +3388,8 @@ return to regular interpretation of self-insert characters." "Catchall handling of key bindings in hot-spots. Translates unmodified keystrokes to corresponding allout commands, when -they would qualify if prefixed with the allout-command-prefix, and sets -this-command accordingly. +they would qualify if prefixed with the `allout-command-prefix', and sets +`this-command' accordingly. Returns the qualifying command, if any, else nil." (interactive) @@ -3533,7 +3533,7 @@ the current topics' depth. If INSTEAD is: - nil, then the bullet char for the context is used, per distinction or depth -- a \(numeric) character, then character's string representation is used +- a (numeric) character, then character's string representation is used - a string, then the user is asked for bullet with the first char as default - anything else, the user is solicited with bullet char per context as default @@ -3849,7 +3849,7 @@ Nuances: (defun allout-open-subtopic (arg) "Open new topic header at deeper level than the current one. -Negative universal arg means to open deeper, but place the new topic +Negative universal ARG means to open deeper, but place the new topic prior to the current one." (interactive "p") (allout-open-topic 1 (> 0 arg) (< 1 arg))) @@ -3857,9 +3857,9 @@ prior to the current one." (defun allout-open-sibtopic (arg) "Open new topic header at same level as the current one. -Positive universal arg means to use the bullet of the prior sibling. +Positive universal ARG means to use the bullet of the prior sibling. -Negative universal arg means to place the new topic prior to the current +Negative universal ARG means to place the new topic prior to the current one." (interactive "p") (allout-open-topic 0 (> 0 arg) (not (= 1 arg)))) @@ -3867,7 +3867,7 @@ one." (defun allout-open-supertopic (arg) "Open new topic header at shallower level than the current one. -Negative universal arg means to open shallower, but place the new +Negative universal ARG means to open shallower, but place the new topic prior to the current one." (interactive "p") @@ -3992,7 +3992,7 @@ All args are optional. If INSTEAD is: - nil, then the bullet char for the context is used, per distinction or depth -- a \(numeric) character, then character's string representation is used +- a (numeric) character, then character's string representation is used - a string, then the user is asked for bullet with the first char as default - anything else, the user is solicited with bullet char per context as default @@ -4033,7 +4033,7 @@ this function." number-control index))) - ;; Is new one is identical to old? + ;; Is new one identical to old? (if (and (= current-depth new-depth) (string= current-bullet (substring new-prefix (1- (length new-prefix))))) @@ -4407,7 +4407,7 @@ subtopics into siblings of the item." (run-hook-with-args 'allout-structure-deleted-hook depth (point)))))) ;;;_ > allout-copy-line-as-kill () (defun allout-copy-line-as-kill () - "Like allout-kill-topic, but save to kill ring instead of deleting." + "Like `allout-kill-topic', but save to kill ring instead of deleting." (interactive) (let ((buffer-read-only t)) (condition-case nil @@ -5854,12 +5854,12 @@ With repeat count, copy the exposed portions of entire buffer." (defun allout-toggle-current-subtree-encryption (&optional keymode-cue) "Encrypt clear or decrypt encoded topic text. -Allout uses emacs 'epg' libary to perform encryption. Symmetric +Allout uses Emacs 'epg' library to perform encryption. Symmetric and keypair encryption are supported. All encryption is ascii armored. Entry encryption defaults to symmetric key mode unless keypair -recipients are associated with the file \(see +recipients are associated with the file (see `epa-file-encrypt-to') or the function is invoked with a \(KEYMODE-CUE) universal argument greater than 1. @@ -5881,7 +5881,7 @@ pending encryption or encrypted. `*' asterisk immediately after the bullet signals that the body is encrypted, its absence means the topic is meant to be encrypted but is not currently. When a file with topics pending encryption is saved, topics pending -encryption are encrypted. See allout-encrypt-unencrypted-on-saves +encryption are encrypted. See `allout-encrypt-unencrypted-on-saves' for auto-encryption specifics. \*NOTE WELL* that automatic encryption that happens during saves will @@ -5900,7 +5900,7 @@ encrypted. If you want to encrypt the contents of a top-level topic, use "Encrypt clear text or decrypt encoded topic contents (body and subtopics.) Entry encryption defaults to symmetric key mode unless keypair -recipients are associated with the file \(see +recipients are associated with the file (see `epa-file-encrypt-to') or the function is invoked with a \(KEYMODE-CUE) universal argument greater than 1. @@ -5916,7 +5916,7 @@ associated with it. This can be used to deassociate any recipients with the file, by selecting no recipients in the dialog. -Encryption and decryption uses the emacs epg library. +Encryption and decryption uses the Emacs 'epg' library. Encrypted text will be ascii-armored. @@ -6033,7 +6033,7 @@ If DECRYPT is true (default false), then decrypt instead of encrypt. ALLOUT-BUFFER identifies the buffer containing the text. Entry encryption defaults to symmetric key mode unless keypair -recipients are associated with the file \(see +recipients are associated with the file (see `epa-file-encrypt-to') or the function is invoked with a \(KEYMODE-CUE) universal argument greater than 1. @@ -6057,7 +6057,7 @@ rejections due to matches against NOTE: A few GnuPG v2 versions improperly preserve incorrect symmetric decryption keys, preventing entry of the correct key on subsequent decryption attempts until the cache times-out. That -can take several minutes. \(Decryption of other entries is not +can take several minutes. (Decryption of other entries is not affected.) Upgrade your EasyPG version, if you can, and you can deliberately clear your gpg-agent's cache by sending it a '-HUP' signal." @@ -6196,7 +6196,7 @@ signal." (defun allout-inhibit-auto-save-info-for-decryption (was-buffer-saved-size) "Temporarily prevent auto-saves in this buffer when an item is decrypted. -WAS-BUFFER-SAVED-SIZE is the value of buffer-saved-size *before* +WAS-BUFFER-SAVED-SIZE is the value of `buffer-saved-size' *before* the decryption." (when (not (or (= buffer-saved-size -1) (= was-buffer-saved-size -1))) (setq allout-auto-save-temporarily-disabled was-buffer-saved-size @@ -6229,8 +6229,8 @@ the decryption." "Return the point of the next topic pending encryption, or nil if none. Such a topic has the `allout-topic-encryption-bullet' without an -immediately following '*' that would mark the topic as being encrypted. It -must also have content." +immediately following '*' that would mark the topic as being encrypted. +It must also have content." (let (done got content-beg) (save-match-data (while (not done) @@ -6332,7 +6332,7 @@ save. See `allout-encrypt-unencrypted-on-saves' for more info." "Activate outline mode and establish file var so it is started subsequently. See `allout-layout' and customization of `allout-auto-activation' -for details on preparing emacs for automatic allout activation." +for details on preparing Emacs for automatic allout activation." (interactive "P") @@ -6380,7 +6380,7 @@ Returns a list of the form (BEGINNING-POINT PREFIX-STRING SUFFIX-STRING)." (defun allout-adjust-file-variable (varname value) "Adjust the setting of an Emacs file variable named VARNAME to VALUE. -This activity is inhibited if either `enable-local-variables' +This activity is inhibited if either `enable-local-variables' or `allout-enable-file-variable-adjustment' are nil. When enabled, an entry for the variable is created if not already present, diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index 788bf71845..6b56e20df1 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog @@ -1,3 +1,7 @@ +2011-11-24 Juanma Barranquero + + * semantic/lex-spp.el (semantic-lex-spp-first-token-arg-list): Fix typo. + 2011-11-20 Juanma Barranquero * cedet-cscope.el (cedet-cscope-version-check): diff --git a/lisp/cedet/semantic/bovine/c.el b/lisp/cedet/semantic/bovine/c.el index 686113c23e..fe659d118e 100644 --- a/lisp/cedet/semantic/bovine/c.el +++ b/lisp/cedet/semantic/bovine/c.el @@ -298,7 +298,7 @@ Moves completely over balanced #if blocks." ;; @TODO - can we use the new c-scan-conditionals (c-forward-conditional 1)) ((looking-at "^\\s-*#\\s-*elif") - ;; We need to let the preprocessor analize this one. + ;; We need to let the preprocessor analyze this one. (beginning-of-line) (setq done t) ) diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index 9cbea4430e..cf82da303c 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el @@ -821,7 +821,7 @@ STR occurs in the current buffer between BEG and END." ;; a macro. (defun semantic-lex-spp-first-token-arg-list (token) - "If TOKEN is a semantic-list, turn it into a an SPP ARG LIST." + "If TOKEN is a semantic-list, turn it into an SPP ARG LIST." (when (and (consp token) (symbolp (car token)) (eq 'semantic-list (car token))) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 9c05fab048..2b144529de 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,7 @@ +2011-11-24 Juanma Barranquero + + * gnus-group.el (gnus-group-highlight): Fix typo. + 2011-11-24 Adam W (tiny change) * mail-source.el (mail-source-fetch-maildir): Don't expect the return @@ -2277,7 +2281,7 @@ * gnus-art.el (gnus-article-next-page-1): Because customized mode-line face with line-width greater than zero will cause RET in gnus summary buffer to scroll down article page-wise because auto vscroll happens, - it should be temporalily disabled when doing a scroll-up. + it should be temporally disabled when doing a scroll-up. 2011-02-19 Lars Ingebrigtsen @@ -11700,7 +11704,7 @@ (nntp-open-marks): Decode group names when bootstrapping marks. * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode - Newsgroups and Folowup-To headers. + Newsgroups and Followup-To headers. 2007-07-13 Katsumi Yamaoka diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 6f14664411..9d35896906 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -362,7 +362,7 @@ If you want to modify the group buffer, you can use this hook." gnus-group-news-low)) "*Controls the highlighting of group buffer lines. -Below is a list of `Form'/`Face' pairs. When deciding how a a +Below is a list of `Form'/`Face' pairs. When deciding how a particular group line should be displayed, each form is evaluated. The content of the face field after the first true form is used. You can change how those group lines are displayed by diff --git a/lisp/mh-e/ChangeLog.1 b/lisp/mh-e/ChangeLog.1 index 15eb1cbaed..1c0f3ff630 100644 --- a/lisp/mh-e/ChangeLog.1 +++ b/lisp/mh-e/ChangeLog.1 @@ -2553,7 +2553,7 @@ for users who have customized it to a long list now redundant with `mh-invisible-header-fields-default'. (mh-invisible-header-fields-default-override): New defcustom. - Users check off the fields they want displyed from what we + Users check off the fields they want displayed from what we included in `mh-invisible-header-fields-default'. (mh-invisible-headers): Function adapted to new variables. diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index f6a5b53ae7..48502540e2 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -5995,7 +5995,7 @@ Other orders of $ and _ seem to all work just fine.") (concat pubset (and userid (concat userid ".")) - ;; change every '/' in filename to a '.', normally not neccessary + ;; change every '/' in filename to a '.', normally not necessary (and filename (subst-char-in-string ?/ ?. filename))))) ;; Let's hope that BS2000 recognize this anyway: diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 9c750ca5e8..c42c230941 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el @@ -144,7 +144,7 @@ ;; 3.07--3.08: ;; - Made `fast-lock-read-cache' set `fast-lock-cache-filename' ;; 3.08--3.09: -;; - Made `fast-lock-save-cache' cope if `fast-lock-minimum-size' is an a list +;; - Made `fast-lock-save-cache' cope if `fast-lock-minimum-size' is a list ;; - Made `fast-lock-mode' respect the value of `font-lock-inhibit-thing-lock' ;; - Added `fast-lock-after-unfontify-buffer' ;; 3.09--3.10: diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index aa96fa1a4d..94346a4944 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,7 @@ +2011-11-24 Juanma Barranquero + + * ob.el (org-babel-execute-src-block): Fix typo. + 2011-11-20 Juanma Barranquero * org.el (org-link-unescape, org-link-unescape-compound): Fix typos. diff --git a/lisp/org/ob.el b/lisp/org/ob.el index 728c6c5cb5..f34d1fbda9 100644 --- a/lisp/org/ob.el +++ b/lisp/org/ob.el @@ -380,7 +380,7 @@ Insert the results of execution into the buffer. Source code execution and the collection and formatting of results can be controlled through a variety of header arguments. -With prefix argument ARG, force re-execution even if a an +With prefix argument ARG, force re-execution even if an existing result cached in the buffer would otherwise have been returned. diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el index 1eaf8910d1..8e4ac92d96 100644 --- a/lisp/progmodes/cc-cmds.el +++ b/lisp/progmodes/cc-cmds.el @@ -2316,7 +2316,7 @@ function does not require the declaration to contain a brace block." (defun c-after-statement-terminator-p () ; Should we pass in LIM here? ;; Does point immediately follow a statement "terminator"? A virtual - ;; semicolon is regarded here as such. So is a an opening brace ;-) + ;; semicolon is regarded here as such. So is an opening brace ;-) ;; ;; This function might do hidden buffer changes. (or (save-excursion diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 527bc51eef..854cc664b3 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -1745,7 +1745,7 @@ and source-file directory for your debugger." ;; All the .java files in the directories in gud-jdb-directories are ;; syntactically analyzed each time gud jdb is invoked. It would be ;; nice to keep as much information as possible between runs. It would -;; be really nice to analyze the files only as neccessary (when the +;; be really nice to analyze the files only as necessary (when the ;; source needs to be displayed.) I'm not sure to what extent the former ;; can be accomplished and I'm not sure the latter can be done at all ;; since I don't know of any general way to tell which .class files are diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 4cc4a133c8..3570a2cfa3 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -4627,7 +4627,7 @@ line in bottom-up order." (verilog-batch-execute-func `verilog-inject-auto)) (defun verilog-batch-indent () - "For use with --batch, reindent an a entire file as a stand-alone tool. + "For use with --batch, reindent an entire file as a stand-alone tool. This sets up the appropriate Verilog mode environment, calls \\[verilog-indent-buffer] on all command-line files, and saves the buffers." (unless noninteractive diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index c9b1c44eb9..8df2e81c72 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -1451,12 +1451,12 @@ Set this variable before loading BibTeX mode." (defvar bibtex-field-braces-opt nil "Optimized value of `bibtex-field-braces-alist'. Created by `bibtex-field-re-init'. -It is a an alist with elements (FIELD . REGEXP).") +It is an alist with elements (FIELD . REGEXP).") (defvar bibtex-field-strings-opt nil "Optimized value of `bibtex-field-strings-alist'. Created by `bibtex-field-re-init'. -It is a an alist with elements (FIELD RULE1 RULE2 ...), +It is an alist with elements (FIELD RULE1 RULE2 ...), where each RULE is (REGEXP . TO-STR).") (defvar bibtex-pop-previous-search-point nil diff --git a/lisp/vc/cvs-status.el b/lisp/vc/cvs-status.el index 063eb41457..3444b230e8 100644 --- a/lisp/vc/cvs-status.el +++ b/lisp/vc/cvs-status.el @@ -257,7 +257,7 @@ The tree will be printed no closer than column COLUMN." (defun cvs-tree-merge (tree1 tree2) "Merge tags trees TREE1 and TREE2 into one. -BEWARE: because of stability issues, this is not a symetric operation." +BEWARE: because of stability issues, this is not a symmetric operation." (assert (and (listp tree1) (listp tree2))) (cond ((null tree1) tree2) diff --git a/lisp/wdired.el b/lisp/wdired.el index cc99bd4062..b9c07d15ae 100644 --- a/lisp/wdired.el +++ b/lisp/wdired.el @@ -32,7 +32,7 @@ ;; the files in a "dired" buffer? Now you can do this. All the power ;; of Emacs commands are available to renaming files! ;; -;; This package provides a function that makes the filenames of a a +;; This package provides a function that makes the filenames of a ;; dired buffer editable, by changing the buffer mode (which inhibits ;; all of the commands of dired mode). Here you can edit the names of ;; one or more files and directories, and when you press C-c C-c, the diff --git a/lisp/window.el b/lisp/window.el index 2885c3a5c7..ad611bbba5 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -4522,7 +4522,7 @@ The actual non-nil value of this variable will be copied to the (defun window-normalize-buffer-to-display (buffer-or-name) "Normalize BUFFER-OR-NAME argument for buffer display functions. -If BUFFER-OR-NAME is nil, return the curent buffer. Else, if a +If BUFFER-OR-NAME is nil, return the current buffer. Else, if a buffer specified by BUFFER-OR-NAME exists, return that buffer. If no such buffer exists, create a buffer with the name BUFFER-OR-NAME and return that buffer." diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 7e3538aec0..b83517ad1f 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -1156,9 +1156,9 @@ lw_get_widget_value_for_widget (widget_instance *instance, Widget w) /* To forbid recursive calls */ static Boolean lwlib_updating; -/* This function can be used as a an XtCallback for the widgets that get - modified to update other instances of the widgets. Closure should be the - widget_instance. */ +/* This function can be used as an XtCallback for the widgets that get + modified to update other instances of the widgets. Closure should be the + widget_instance. */ void lw_internal_update_other_instances (Widget widget, XtPointer closure, diff --git a/src/ChangeLog.11 b/src/ChangeLog.11 index 72871475b6..cb8b413a51 100644 --- a/src/ChangeLog.11 +++ b/src/ChangeLog.11 @@ -2191,7 +2191,7 @@ 2010-12-16 Jan Djärv * nsterm.m (ns_draw_window_cursor): If the cursor color is the - same as the background, use the face forground as cursor. + same as the background, use the face foreground as cursor. 2010-12-13 Eli Zaretskii diff --git a/src/msdos.c b/src/msdos.c index 4c08c5b29e..64e9d72c78 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -1558,7 +1558,7 @@ IT_set_terminal_window (struct frame *f, int foo) { } -/* Remember the screen colors of the curent frame, to serve as the +/* Remember the screen colors of the current frame, to serve as the default colors for newly-created frames. */ DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors, Smsdos_remember_default_colors, 1, 1, 0, -- 2.20.1