]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes (mostly "inactive" vs "deactivate").
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 27 Nov 2011 18:17:40 +0000 (10:17 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 27 Nov 2011 18:17:40 +0000 (10:17 -0800)
17 files changed:
doc/misc/gnus.texi
etc/NEWS.23
lisp/ChangeLog.15
lisp/ChangeLog.4
lisp/ChangeLog.7
lisp/cus-edit.el
lisp/emacs-lisp/advice.el
lisp/erc/ChangeLog.02
lisp/gnus/ChangeLog
lisp/gnus/gnus-group.el
lisp/isearch.el
lisp/ldefs-boot.el
lisp/mh-e/mh-tool-bar.el
lisp/net/tramp.el
lisp/textmodes/table.el
src/ChangeLog.10
src/search.c

index a1da74710a4ac0a79b50070e749915d83b21a4e9..69b17a94d686727d0b53a6a576d893f2ace81938 100644 (file)
@@ -21895,7 +21895,7 @@ Clearly, the easiest way would be if marks could somehow be
 automatically set for the original article. This is exactly what
 @emph{marks propagation} is about.
 
-Marks propagation is deactivated by default. You can activate it for a
+Marks propagation is inactive by default. You can activate it for a
 certain @code{nnmairix} group with
 @code{nnmairix-group-toggle-propmarks-this-group} (bound to @kbd{G b
 p}). This function will warn you if you try to use it with your default
index ec33037acba90ba1ca3f4a204991e0cf502f9aeb..4e541c0deb3231223dd623a5fecfbf11ce1c7dfc 100644 (file)
@@ -1027,8 +1027,8 @@ motion keys (e.g. S-left and S-down) activate and extend a temporary
 region, similar to mouse-selection.
 
 *** Temporarily active regions, created using shift-selection or
-mouse-selection, are not necessarily deactivated in the next command.
-They are only deactivated after point motion commands that are not
+mouse-selection, are not necessarily deactivated after the next command.
+They are deactivated only after point motion commands that are not
 shift-translated, or after commands that would ordinarily deactivate
 the mark in Transient Mark mode (e.g., any command that modifies the
 buffer).
index 82f3417ef82ec3947675ff7df262270776bacc25..e0c244d572514c9ed86859f9945b0ccf675293bf 100644 (file)
        Consolidate layout provisions coce directly into the activation
        condition branch, now that we've removed those provisions.
        (allout-unload-function): Explicitly activate the mode before
-       deactivating, if it's initially deactivated.
+       deactivating, if it's initially inactive.
        (allout-set-buffer-multibyte): Properly prevent byte-compiler
        warnings for version of function used only where
        set-buffer-multibyte is unavailable.
index b2cdc634f84a38be8254181f704b1042c8910356..51e2661d89e89cb4d5ad68c42cf5b5636ca67782 100644 (file)
        (desktop-locals-to-save): Add line-number-mode to be saved when
        local.
        (desktop-remove): In case the desktop file cannot be deleted
-       make sure that the desktop system is still inactivated.
+       make sure that the desktop system is still inactive.
        (desktop-kill): In case an error occurs when saving the desktop,
        offer to quit regardless.
        (desktop-save-buffer-p): Disregard case when testing file and
index b9f8de3b598002dd7b506dbb7ce173b4b651c2a2..934258ade6758bd8d87082e53cfa60709c70fe24 100644 (file)
        have KEY.
        (current-input-method-title): Doc-string modified.
        (select-input-method): Set current-input-method to nil even if
-       inactivation of the current input method failed.
+       deactivation of the current input method failed.
        (set-language-environment): Doc-string modified.
        (describe-language-support): Doc-string modified.  Calls an
        appropriate function for each language.
index 07944a6c16fd559c198e16a65f904e27cd529c68..3d5ae69fe3de063d06ec159d7dd374410a4b5e06 100644 (file)
@@ -3225,7 +3225,7 @@ Also change :reverse-video to :inverse-video."
     (if (not inactive)
        ;; Widget is alive, we don't have to do anything special
        (widget-default-delete widget)
-      ;; WIDGET is already deleted because we did so to inactivate it;
+      ;; WIDGET is already deleted because we did so to deactivate it;
       ;; now just get rid of the label we put in its place.
       (delete-region (car (cdr inactive))
                     (+ (car (cdr inactive)) (cdr (cdr inactive))))
index 976848e155d3f94e8bd4c29cf7783c1e2bcb389c..ae2900775ac0f424935ac17f7a5db3ca387c3e66 100644 (file)
 ;;
 ;;    (ad-activate-regexp "^ange-ftp-")
 ;;
-;; A saver way would have been to use
+;; A safer way would have been to use
 ;;
 ;;    (ad-update-regexp "^ange-ftp-")
 ;;
 ;; instead which would have only reactivated currently actively advised
-;; functions, but not functions that were currently deactivated. All these
+;; functions, but not functions that were currently inactive. All these
 ;; functions can also be called interactively.
 
 ;; A certain piece of advice is considered a match if its name contains a
 ;;     Reactivate an advised function but only if its advice is currently
 ;;     active. This can be used to bring all currently advised function up
 ;;     to date with the current state of advice without also activating
-;;     currently deactivated functions.
+;;     currently inactive functions.
 ;; - Caching:
 ;;     Is the saving of an advised definition and an identifying cache-id so
 ;;     it can be reused, for example, for activation after deactivation.
 ;; - ad-activate to activate the advice of a FUNCTION
 ;; - ad-deactivate to deactivate the advice of a FUNCTION
 ;; - ad-update   to activate the advice of a FUNCTION unless it was not
-;;               yet activated or is currently deactivated.
+;;               yet activated or is currently inactive.
 ;; - ad-unadvise deactivates a FUNCTION and removes all of its advice
 ;;               information, hence, it cannot be activated again
 ;; - ad-recover  tries to redefine a FUNCTION to its original definition and
 ;; contain some advice matched by the regular expression. This is a save
 ;; way to update the activation of advised functions whose advice changed
 ;; in some way or other without accidentally also activating currently
-;; deactivated functions:
+;; inactive functions:
 ;;
 ;; (ad-update-regexp "^fg-")
 ;; nil
index 279a336f15f3ad49d28b2b8988ed89c92c1905ee..3364af531f5f5866fd0b19c8de68262159827707 100644 (file)
 
 2002-11-16  Alex Schroeder  <alex@gnu.org>
 
-       * erc-autoaway.el, erc-button.el, erc-fill.el, erc-match.el, 
+       * erc-autoaway.el, erc-button.el, erc-fill.el, erc-match.el,
          erc-menu.el, erc-ring.el, erc-track.el:
        Cleanup of file headers: copyright years, GPL mumbo-jumbo, commentaries.
 
        * erc-match.el: fixed spelling error
 
        * erc-track.el, erc-match.el: * erc-match.el:
-         highlight current nickname in its own face (deactivated by default):
+         highlight current nickname in its own face (inactive by default):
          - added erc-current-nick-highlight-type, erc-current-nick-face,
            erc-current-nick-p
 
          (require 'erc-nickserv) is now necessary for this to work
 
        * erc.el:
-       * results of /COUNTRY now formatted as notice; errors are ignored, 
+       * results of /COUNTRY now formatted as notice; errors are ignored,
          fixing
          bug which made prompt disappear
 
 
        * erc.el: remove trailing \n from any sent text
 
-       * servers.pl, erc-bbdb.el, erc-button.el, erc-chess.el, 
-         erc-complete.el, erc-fill.el, erc-ibuffer.el, erc-list.el, 
-         erc-match.el, erc-menu.el, erc-nets.el, erc-replace.el, 
+       * servers.pl, erc-bbdb.el, erc-button.el, erc-chess.el,
+         erc-complete.el, erc-fill.el, erc-ibuffer.el, erc-list.el,
+         erc-match.el, erc-menu.el, erc-nets.el, erc-replace.el,
          erc-speak.el, erc-speedbar.el, erc-track.el, erc.el:
        clean whitespace
 
index 7e0d60018c2be8ed86cd55993aff4a1ef86ea815..6f1b6a3a42a90e4d347aa29e8df54220f8c281e3 100644 (file)
 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
-       data if the group is deactivated.
+       data if the group is inactive.
 
 2011-01-28  Julien Danjou  <julien@danjou.info>
 
index 02c37f2277435e8c5a9bc39e4423302e4e12648b..694b4d7e8b404f4b0a22a03467ee98270dd3e515 100644 (file)
@@ -1354,7 +1354,7 @@ if it is a string, only list groups matching REGEXP."
                     (predicate t)      ; We list all groups?
                     (t
                      (or
-                      (if (eq unread t) ; Deactivated?
+                      (if (eq unread t) ; Inactive?
                           gnus-group-list-inactive-groups
                                        ; We list inactive
                         (and (numberp unread) (> unread 0)))
index 39ed7adc9c48608feb286cd00195d9fbdd22a03c..6d95993bdd3d60e3d9dcabbe8fe5308963608b17 100644 (file)
@@ -1872,7 +1872,7 @@ the bottom."
   (goto-char isearch-point))
 
 (defun isearch-reread-key-sequence-naturally (keylist)
-  "Reread key sequence KEYLIST with Isearch mode's keymap deactivated.
+  "Reread key sequence KEYLIST with an inactive Isearch-mode keymap.
 Return the key sequence as a string/vector."
   (isearch-unread-key-sequence keylist)
   (let (overriding-terminal-local-map)
index fb1735cf6a1b747333de0ac688636cdae9df2beb..8d7e4d4126511057377220993fac5c2254d8dd27 100644 (file)
@@ -27771,7 +27771,7 @@ companion command to `table-capture' this way.
 
 (autoload 'table-release "table" "\
 Convert a table into plain text by removing the frame from a table.
-Remove the frame from a table and inactivate the table.  This command
+Remove the frame from a table and deactivate the table.  This command
 converts a table into plain text without frames.  It is a companion to
 `table-capture' which does the opposite process.
 
index ddc9b3ffe9487b46fb27dee2c1cbab06ce4929b6..4469c043b15608f12a9a5ea31df76f7cfc39a04a 100644 (file)
@@ -127,7 +127,7 @@ where,
   first line is useful and complete without the rest of the string.
 
   Optional item ENABLE-EXPR is an arbitrary lisp expression. If it
-  evaluates to nil, then the button is deactivated, otherwise it is
+  evaluates to nil, then the button is inactive, otherwise it is
   active. If it isn't present then the button is always active."
   ;; The following variable names have been carefully chosen to make code
   ;; generation easier. Modifying the names should be done carefully.
index 0ee6ad8dea4dff7a16354798b543f1e1c397cce6..c89b61c2eb179965342b44b9c405d4dcd9dfe631 100644 (file)
@@ -1331,7 +1331,7 @@ ARGS to actually emit the message (if applicable)."
                (setq fn nil)))
            (setq btn (1+ btn))))
        ;; The following code inserts filename and line number.
-       ;; Should be deactivated by default, because it is time
+       ;; Should be inactive by default, because it is time
        ;; consuming.
 ;      (let ((ffn (find-function-noselect (intern fn))))
 ;        (insert
index 08a45b6b3029faec57e691fba78e908134a9a10b..65f6d98ef79a1af2eda970fd2c6f76ba2b8cdd68 100644 (file)
 ;; +-------------------------------+----------------------------------+
 ;; |`table-recognize'              |Recognize all tables in the       |
 ;; |`table-unrecognize'            |current buffer and                |
-;; |                               |activate/inactivate them.         |
+;; |                               |activate/deactivate them.         |
 ;; +-------------------------------+----------------------------------+
 ;; |`table-recognize-region'       |Recognize all the cells in a      |
-;; |`table-unrecognize-region'     |region and activate/inactivate    |
+;; |`table-unrecognize-region'     |region and activate/deactivate    |
 ;; |                               |them.                             |
 ;; +-------------------------------+----------------------------------+
 ;; |`table-recognize-table'        |Recognize all the cells in a      |
 ;; |`table-unrecognize-table'      |single table and                  |
-;; |                               |activate/inactivate them.         |
+;; |                               |activate/deactivate them.         |
 ;; +-------------------------------+----------------------------------+
 ;; |`table-recognize-cell'         |Recognize a cell.  Find a cell    |
 ;; |`table-unrecognize-cell'       |which contains the current point  |
-;; |                               |and activate/inactivate that cell.|
+;; |                               |and activate/deactivate that cell.|
 ;; +-------------------------------+----------------------------------+
 ;; |`table-forward-cell'           |Move point to the next Nth cell in|
 ;; |                               |a table.                          |
@@ -3856,7 +3856,7 @@ companion command to `table-capture' this way.
 ;;;###autoload
 (defun table-release ()
   "Convert a table into plain text by removing the frame from a table.
-Remove the frame from a table and inactivate the table.  This command
+Remove the frame from a table and deactivate the table.  This command
 converts a table into plain text without frames.  It is a companion to
 `table-capture' which does the opposite process."
   (interactive)
index 42af99ccc584aaa9995d4c0802e52031d1c637bd..7d2f48a03ea562a0c446055b946436d3776fd8b2 100644 (file)
        (merge_face_heights): Eliminate GCPRO arg.  All callers changed.
 
        * keyboard.c (command_loop_1): Change Vtransient_mark_mode
-       before deciding whether to inactivate mark.
+       before deciding whether to deactivate mark.
 
 2004-11-06  Lars Brinkhoff  <lars@nocrew.org>
 
index a6a0fddb137464e926076e86e31dfc3f64026956..fe4ce534b0b415569dc57f2ce7b60c5e79f89e4a 100644 (file)
@@ -3132,7 +3132,7 @@ record_unwind_save_match_data (void)
                         Fmatch_data (Qnil, Qnil, Qnil));
 }
 
-/* Quote a string to inactivate reg-expr chars */
+/* Quote a string to deactivate reg-expr chars */
 
 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
        doc: /* Return a regexp string which matches exactly STRING and nothing else.  */)