1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

Fix typos.

This commit is contained in:
Juanma Barranquero 2011-11-24 02:58:14 +01:00
parent 29291ef14b
commit 20db1522fe
28 changed files with 110 additions and 73 deletions

View File

@ -1,3 +1,7 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* configure.in (HAVE_XPM): Fix typo.
2011-11-22 Glenn Morris <rgm@gnu.org>
* configure.in (EMACSDATA, EMACSDOC): If set, print, since they can

View File

@ -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

View File

@ -1,3 +1,7 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* display.texi (Font Lock): Fix typo.
2011-11-24 Glenn Morris <rgm@gnu.org>
* rmail.texi (Rmail Output):

View File

@ -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.

View File

@ -1,3 +1,20 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* 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 <michael.albinus@gmx.de>
* rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind

View File

@ -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.

View File

@ -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.

View File

@ -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,

View File

@ -1,3 +1,7 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* semantic/lex-spp.el (semantic-lex-spp-first-token-arg-list): Fix typo.
2011-11-20 Juanma Barranquero <lekktu@gmail.com>
* cedet-cscope.el (cedet-cscope-version-check):

View File

@ -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)
)

View File

@ -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)))

View File

@ -1,3 +1,7 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* gnus-group.el (gnus-group-highlight): Fix typo.
2011-11-24 Adam W <adam_w67@yahoo.com> (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 <larsi@gnus.org>
@ -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 <yamaoka@jpl.org>

View File

@ -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

View File

@ -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.

View File

@ -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:

View File

@ -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:

View File

@ -1,3 +1,7 @@
2011-11-24 Juanma Barranquero <lekktu@gmail.com>
* ob.el (org-babel-execute-src-block): Fix typo.
2011-11-20 Juanma Barranquero <lekktu@gmail.com>
* org.el (org-link-unescape, org-link-unescape-compound): Fix typos.

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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

View File

@ -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."

View File

@ -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,

View File

@ -2191,7 +2191,7 @@
2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
* 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 <eliz@gnu.org>

View File

@ -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,