emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r112918: Spelling fixes.


From: Paul Eggert
Subject: [Emacs-diffs] trunk r112918: Spelling fixes.
Date: Mon, 10 Jun 2013 23:02:36 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112918
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Mon 2013-06-10 16:02:33 -0700
message:
  Spelling fixes.
=== modified file 'lisp/cedet/semantic/ctxt.el'
--- a/lisp/cedet/semantic/ctxt.el       2013-06-02 13:33:09 +0000
+++ b/lisp/cedet/semantic/ctxt.el       2013-06-10 23:02:33 +0000
@@ -366,7 +366,7 @@
 If the cursor is on 'this', will move point to the ; after entry.")
 
 (defun semantic-ctxt-end-of-symbol-default (&optional point)
-  "Move poin to the end of the current symbol under POINT.
+  "Move point to the end of the current symbol under POINT.
 This will move past type/field names when applicable.
 Depends on `semantic-type-relation-separator-character', and will
 work on C like languages."
@@ -422,18 +422,18 @@
 
                ;; Skip the separator and the symbol.
                (goto-char (match-end 0))
-               
+
                (if (looking-at "\\w\\|\\s_")
                    ;; Skip symbols
                    (forward-sexp 1)
                  ;; No symbol, exit the search...
                  (setq continuesearch nil))
-                 
+
                (setq end (point)))
-               
+
              ;; Cont...
              )
-         
+
          ;; Restore position if we go to far....
          (error (goto-char end)) )
 

=== modified file 'lisp/cedet/semantic/decorate/mode.el'
--- a/lisp/cedet/semantic/decorate/mode.el      2013-06-02 13:33:09 +0000
+++ b/lisp/cedet/semantic/decorate/mode.el      2013-06-10 23:02:33 +0000
@@ -396,7 +396,7 @@
   (let ((predicate   (semantic-decorate-style-predicate   name))
         (highlighter (semantic-decorate-style-highlighter name))
        (predicatedef   (semantic-decorate-style-predicate-default   name))
-       (highlighterdef (semantic-decorate-style-highlighter-default name))     
+       (highlighterdef (semantic-decorate-style-highlighter-default name))
        (defaultenable (if (plist-member flags :enabled)
                           (plist-get flags :enabled)
                         t))
@@ -422,14 +422,14 @@
        (add-to-list 'semantic-decoration-styles
                     (cons ',(symbol-name name)
                          ,defaultenable))
-       ;; If there is a load file, then create the autload tokens for
+       ;; If there is a load file, then create the autoload tokens for
        ;; those functions to load the token, but only if the fsym
        ;; doesn't exist yet.
        (when (stringp ,loadfile)
         (unless (fboundp ',predicatedef)
           (autoload ',predicatedef ',loadfile "Return non-nil to decorate TAG."
             nil 'function))
-        
+
         (unless (fboundp ',highlighterdef)
           (autoload ',highlighterdef ',loadfile "Decorate TAG."
             nil 'function))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]