]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 9 Nov 2011 16:18:33 +0000 (17:18 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 9 Nov 2011 16:18:33 +0000 (17:18 +0100)
doc/lispref/ChangeLog
lisp/ChangeLog
lisp/gnus/ChangeLog
lisp/progmodes/gud.el
lisp/progmodes/meta-mode.el

index ca3a01d280894ab769a28a222641018bcc8778f6..238ce9838b0aadaae261c86b0c1d715bd662d698 100644 (file)
@@ -1,7 +1,7 @@
 2011-11-09  Chong Yidong  <cyd@gnu.org>
 
        * windows.texi (Window Sizes): Document window-pixel-edges,
-       window-inside-pixel-edges. window-absolute-pixel-edges, and
+       window-inside-pixel-edges, window-absolute-pixel-edges, and
        window-inside-absolute-pixel-edges.
        (Resizing Windows): shrink-window-if-larger-than-buffer works on
        non-full-width windows.
        * commands.texi (Misc Events): Add cross-references to where
        POSITION of a mouse event is described in detail.
 
-2010-08-08  Christoph  <cschol2112@googlemail.com>
+2010-08-08  Christoph Scholtes  <cschol2112@googlemail.com>
 
-       * control.texi (Handling Errors) <error-message-string>: Fix arg name.
+       * control.texi (Handling Errors)  <error-message-string>: Fix arg name.
 
 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
 
index d7501d14f8de0a0915ef28b2a7f60e80780e000e..795d0e8702a145d783e3805b6e7316877506e5a3 100644 (file)
        (compilation-next-error-function): Obey the target buffer's
        compilation-error-screen-columns.
 
+2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
+
+       * progmodes/meta-mode.el: Remove obsolete comments.
+       (meta-right-comment-regexp, meta-ignore-comment-regexp):
+       Fix typos in docstrings.
+
 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (window-size-fixed-p): Rewrite doc-string.
index c36d47295189773f2091887cf1e346f8a55918fb..fbbf3bad5a8d83ef866ffcd523c5f3404b62c8e8 100644 (file)
 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
 
        * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
-       where approriate.
+       where appropriate.
 
        * nnml.el (nnml-generate-active-info): do.
 
index 7b3a2893610fe12bed2d10a713ae185572ecda51..944a412fb63bb623b0ae70ef3d42d7b81dbf4b30 100644 (file)
@@ -2155,7 +2155,7 @@ during jdb initialization depending on the value of
                   string
                   (concat "[ \t\n\r,\"" path-separator "]+")))))
 
-;; See comentary for other debugger's marker filters - there you will find
+;; See commentary for other debugger's marker filters - there you will find
 ;; important notes about STRING.
 (defun gud-jdb-marker-filter (string)
 
index ab640c0e270d1be4f0b35cf3d597603c0046a429..e15f765ea581199513f3b5d81b2c3a82dfe09d6a 100644 (file)
 ;;
 ;; This Emacs Lisp package provides a major mode for editing Metafont
 ;; or MetaPost sources.  It includes all the necessary code to set up
-;; a major mode including an approriate syntax table, keymap, and a
+;; a major mode including an appropriate syntax table, keymap, and a
 ;; mode-specific pull-down menu.  It also provides a sophisticated set
 ;; of font-lock patterns, a fancy indentation function adapted from
 ;; AUCTeX's latex.el, and some basic mode-specific editing functions
 ;; such as functions to move to the beginning or end of the enclosing
 ;; environment, or to mark, re-indent, or comment-out environments.
 ;; On the other hand, it doesn't yet provide any functionality for
-;; running Metafont or MetaPost in a shell buffer form within Emacs,
+;; running Metafont or MetaPost in a shell buffer from within Emacs,
 ;; but such functionality might be added later, either as part of this
 ;; package or as a separate Emacs Lisp package.
 
-;; Installation:
-;;
-;; An interface to running Metafont or MetaPost as a shell process
-;; from within Emacs is currently under development as a separate
-;; Emacs Lisp package (meta-buf.el).  In order to have that package
-;; loaded automatically when first entering Metafont or MetaPost mode,
-;; you might use the load-hook provided in this package by adding
-;; these lines to your startup file:
-;;
-;;  (add-hook 'meta-mode-load-hook
-;;            (lambda () (require 'meta-buf)))
-;;
-;; The add-on package loaded this way may in turn make use of the
-;; mode-hooks provided in this package to activate additional features
-;; when entering Metafont or MetaPost mode.
-
-;; Font Lock Support:
-;;
-;; If you are using global-font-lock-mode (introduced in Emacs 19.31),
-;; fontification in Metafont and/or MetaPost mode will be activated
-;; automatically.  To speed up fontification for the rather complex
-;; patterns used in these modes, it may be a good idea to activate
-;; lazy-lock as a font-lock-support-mode (introduced in Emacs 19.32)
-;; by adding these lines to your startup file:
-;;
-;;  (global-font-lock-mode t)
-;;  (setq font-lock-support-mode 'lazy-lock-mode)
-;;
-;; If you are using an older version of Emacs, which doesn't provide
-;; global-font-lock-mode or font-lock-support-mode, you can also
-;; activate fontification in Metafont and/or MetaPost mode by adding
-;; the following lines to your startup file:
-;;
-;;  (add-hook 'meta-common-mode-hook 'turn-on-font-lock)
-;;  (add-hook 'meta-common-mode-hook 'turn-on-lazy-lock)
-
 ;; Customization:
 ;;
 ;; Following the usual Emacs Lisp coding conventions, the major modes
 
 ;; Availability:
 ;;
-;; This package is currently available via my "TeX Software" WWW page:
-;;
-;;  http://www.thphy.uni-duesseldorf.de/~vieth/subjects/tex/software.html
-;;
 ;; As of this version 1.0, this package will be uploaded to CTAN
 ;; archives, where it shall find a permanent home, presumably in
 ;; tex-archive/support/emacs-modes.  It will also be submitted for
 ;; v 0.2 -- 1997/02/03  UV  Improved and debugged font-lock patterns.
 ;;                          Added indent-line-function for TAB.
 ;; v 0.3 -- 1997/02/17  UV  Improved font-lock patterns and syntax table.
-;;                          Improved and debbuged indentation function.
+;;                          Improved and debugged indentation function.
 ;; v 0.4 -- 1997/02/18  UV  Added functions to indent regions for M-C-q,
 ;;                          also added a preliminary mode-specific menu.
 ;; v 0.5 -- 1997/02/19  UV  Added functions to skip to next or previous
@@ -513,13 +473,13 @@ If the list was changed, sort the list and remove duplicates first."
   :group 'meta-font)
 
 (defcustom meta-right-comment-regexp nil
-  "Regexp matching comments that should be placed to the right margin."
+  "Regexp matching comments that should be placed on the right margin."
   :type '(choice regexp
                 (const :tag "None" nil))
   :group 'meta-font)
 
 (defcustom meta-ignore-comment-regexp "%[^%]"
-  "Regexp matching comments that whose indentation should not be touched."
+  "Regexp matching comments whose indentation should not be touched."
   :type 'regexp
   :group 'meta-font)