aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-04 02:11:57 +0000
committerJuanma Barranquero2009-10-04 02:11:57 +0000
commitb4dc7d98882432c9c14c0edb91021bb4868f185e (patch)
treedbf2524c7a53feb3b68673621be1550307f94087 /lisp
parenta30e71aee84b52e1de298a29a96888150711e4a5 (diff)
downloademacs-b4dc7d98882432c9c14c0edb91021bb4868f185e.tar.gz
emacs-b4dc7d98882432c9c14c0edb91021bb4868f185e.zip
Fix typos in comments.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/cedet/semantic/util-modes.el2
-rw-r--r--lisp/dired.el2
-rw-r--r--lisp/international/fontset.el2
-rw-r--r--lisp/international/mule-cmds.el2
-rw-r--r--lisp/mh-e/mh-utils.el2
-rw-r--r--lisp/progmodes/cc-engine.el2
-rw-r--r--lisp/progmodes/idlw-complete-structtag.el2
-rw-r--r--lisp/smerge-mode.el2
-rw-r--r--lisp/textmodes/table.el4
-rw-r--r--lisp/vc-dir.el2
10 files changed, 11 insertions, 11 deletions
diff --git a/lisp/cedet/semantic/util-modes.el b/lisp/cedet/semantic/util-modes.el
index 592394465ae..1d60eb74143 100644
--- a/lisp/cedet/semantic/util-modes.el
+++ b/lisp/cedet/semantic/util-modes.el
@@ -1022,7 +1022,7 @@ Argument EVENT describes the event that caused this function to be called."
1022;;;; 1022;;;;
1023 1023
1024;; Highlight the first like of the function we are in if it is different 1024;; Highlight the first like of the function we are in if it is different
1025;; from the the tag going off the top of the screen. 1025;; from the tag going off the top of the screen.
1026 1026
1027;;;###autoload 1027;;;###autoload
1028(defun global-semantic-highlight-func-mode (&optional arg) 1028(defun global-semantic-highlight-func-mode (&optional arg)
diff --git a/lisp/dired.el b/lisp/dired.el
index 4f0c9bc3c47..bbb71cda1a5 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -937,7 +937,7 @@ BEG..END is the line where the file info is located."
937 ;; spaces there (and within the filename as well, of course). 937 ;; spaces there (and within the filename as well, of course).
938 (save-excursion 938 (save-excursion
939 (let (file file-col other other-col) 939 (let (file file-col other other-col)
940 ;; Check the there is indeed a file, and that there is anoter adjacent 940 ;; Check that there is indeed a file, and that there is anoter adjacent
941 ;; file with which to align, and that additional spaces are needed to 941 ;; file with which to align, and that additional spaces are needed to
942 ;; align the filenames. 942 ;; align the filenames.
943 (when (and (setq file (progn (goto-char beg) 943 (when (and (setq file (progn (goto-char beg)
diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el
index f9d3c85125a..dd8b8634631 100644
--- a/lisp/international/fontset.el
+++ b/lisp/international/fontset.el
@@ -292,7 +292,7 @@
292;; or a string FONT-NAME, 292;; or a string FONT-NAME,
293;; or an object created by `font-spec'. 293;; or an object created by `font-spec'.
294;; 294;;
295;; FAMILY may be nil, in which case, the the corresponding name of 295;; FAMILY may be nil, in which case, the corresponding name of
296;; default face is used. If REGISTRY contains a character `-', the 296;; default face is used. If REGISTRY contains a character `-', the
297;; string before that is embedded in `CHARSET_REGISTRY' field, and the 297;; string before that is embedded in `CHARSET_REGISTRY' field, and the
298;; string after that is embedded in `CHARSET_ENCODING' field. If it 298;; string after that is embedded in `CHARSET_ENCODING' field. If it
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 8c8934874ff..b9ae96f4ff0 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -854,7 +854,7 @@ and TO is ignored."
854 (let ((no-other-defaults nil) 854 (let ((no-other-defaults nil)
855 auto-cs) 855 auto-cs)
856 (unless (or (stringp from) find-file-literally) 856 (unless (or (stringp from) find-file-literally)
857 ;; Find an auto-coding that is specified for the the current 857 ;; Find an auto-coding that is specified for the current
858 ;; buffer and file from the region FROM and TO. 858 ;; buffer and file from the region FROM and TO.
859 (save-excursion 859 (save-excursion
860 (save-restriction 860 (save-restriction
diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el
index 7a263bc8123..d005d00288f 100644
--- a/lisp/mh-e/mh-utils.el
+++ b/lisp/mh-e/mh-utils.el
@@ -282,7 +282,7 @@ and displayed in a help buffer."
282 "Display cheat sheet for the commands of the current prefix in minibuffer." 282 "Display cheat sheet for the commands of the current prefix in minibuffer."
283 (interactive) 283 (interactive)
284 ;; We got here because the user pressed a "?", but he pressed a prefix key 284 ;; We got here because the user pressed a "?", but he pressed a prefix key
285 ;; before that. Since the the key vector starts at index 0, the index of the 285 ;; before that. Since the key vector starts at index 0, the index of the
286 ;; last keystroke is length-1 and thus the second to last keystroke is at 286 ;; last keystroke is length-1 and thus the second to last keystroke is at
287 ;; length-2. We use that information to obtain a suitable prefix character 287 ;; length-2. We use that information to obtain a suitable prefix character
288 ;; from the recent keys. 288 ;; from the recent keys.
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el
index 0b631d47d77..2c71b360748 100644
--- a/lisp/progmodes/cc-engine.el
+++ b/lisp/progmodes/cc-engine.el
@@ -4382,7 +4382,7 @@ comment at the start of cc-engine.el for more info."
4382 4382
4383(defun c-forward-<>-arglist (all-types) 4383(defun c-forward-<>-arglist (all-types)
4384 ;; The point is assumed to be at a "<". Try to treat it as the open 4384 ;; The point is assumed to be at a "<". Try to treat it as the open
4385 ;; paren of an angle bracket arglist and move forward to the the 4385 ;; paren of an angle bracket arglist and move forward to the
4386 ;; corresponding ">". If successful, the point is left after the 4386 ;; corresponding ">". If successful, the point is left after the
4387 ;; ">" and t is returned, otherwise the point isn't moved and nil is 4387 ;; ">" and t is returned, otherwise the point isn't moved and nil is
4388 ;; returned. If ALL-TYPES is t then all encountered arguments in 4388 ;; returned. If ALL-TYPES is t then all encountered arguments in
diff --git a/lisp/progmodes/idlw-complete-structtag.el b/lisp/progmodes/idlw-complete-structtag.el
index 7fdacbed8c1..613baed6bb1 100644
--- a/lisp/progmodes/idlw-complete-structtag.el
+++ b/lisp/progmodes/idlw-complete-structtag.el
@@ -79,7 +79,7 @@
79;; Notes 79;; Notes
80;; ----- 80;; -----
81;; - The structure definition assignment "state = {...}" must use the 81;; - The structure definition assignment "state = {...}" must use the
82;; same variable name as the the completion location "state.*". 82;; same variable name as the completion location "state.*".
83;; - The structure definition must be in the same file. 83;; - The structure definition must be in the same file.
84;; - The structure definition is searched backwards and then forward 84;; - The structure definition is searched backwards and then forward
85;; from the current position, until a definition with tags is found. 85;; from the current position, until a definition with tags is found.
diff --git a/lisp/smerge-mode.el b/lisp/smerge-mode.el
index 0e72d4c233a..95efbc513f0 100644
--- a/lisp/smerge-mode.el
+++ b/lisp/smerge-mode.el
@@ -705,7 +705,7 @@ An error is raised if not inside a conflict."
705 ((save-excursion 705 ((save-excursion
706 (goto-char mine-start) 706 (goto-char mine-start)
707 (re-search-forward smerge-begin-re end t)) 707 (re-search-forward smerge-begin-re end t))
708 ;; There's a nested conflict and we're after the the beginning 708 ;; There's a nested conflict and we're after the beginning
709 ;; of the outer one but before the beginning of the inner one. 709 ;; of the outer one but before the beginning of the inner one.
710 ;; Of course, maybe this is not a nested conflict but in that 710 ;; Of course, maybe this is not a nested conflict but in that
711 ;; case it can only be something nastier that we don't know how 711 ;; case it can only be something nastier that we don't know how
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index f0c8645a974..a8a3d13b66d 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -4968,7 +4968,7 @@ only and must not be specified."
4968 (px (or internal-px (car (if (eq pivot 'left) lu-coordinate rb-coordinate)))) 4968 (px (or internal-px (car (if (eq pivot 'left) lu-coordinate rb-coordinate))))
4969 (ty (- (cdr lu-coordinate) 2)) 4969 (ty (- (cdr lu-coordinate) 2))
4970 (by (+ (cdr rb-coordinate) 2))) 4970 (by (+ (cdr rb-coordinate) 2)))
4971 ;; in case of finding the the first cell, get the last adding item on the list 4971 ;; in case of finding the first cell, get the last adding item on the list
4972 (if (and (null internal-dir) first-only) (setq top-to-bottom (null top-to-bottom))) 4972 (if (and (null internal-dir) first-only) (setq top-to-bottom (null top-to-bottom)))
4973 ;; travel up and process as recursion traces back (reverse order) 4973 ;; travel up and process as recursion traces back (reverse order)
4974 (and cell 4974 (and cell
@@ -5008,7 +5008,7 @@ only and must not be specified."
5008 (py (or internal-py (if (eq pivot 'top) (cdr lu-coordinate) (1+ (cdr rb-coordinate))))) 5008 (py (or internal-py (if (eq pivot 'top) (cdr lu-coordinate) (1+ (cdr rb-coordinate)))))
5009 (lx (1- (car lu-coordinate))) 5009 (lx (1- (car lu-coordinate)))
5010 (rx (1+ (car rb-coordinate)))) 5010 (rx (1+ (car rb-coordinate))))
5011 ;; in case of finding the the first cell, get the last adding item on the list 5011 ;; in case of finding the first cell, get the last adding item on the list
5012 (if (and (null internal-dir) first-only) (setq left-to-right (null left-to-right))) 5012 (if (and (null internal-dir) first-only) (setq left-to-right (null left-to-right)))
5013 ;; travel left and process as recursion traces back (reverse order) 5013 ;; travel left and process as recursion traces back (reverse order)
5014 (and cell 5014 (and cell
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el
index f78ca1806c0..66858beddda 100644
--- a/lisp/vc-dir.el
+++ b/lisp/vc-dir.el
@@ -321,7 +321,7 @@ If BODY uses EVENT, it should be a variable,
321 321
322(defun vc-dir-node-directory (node) 322(defun vc-dir-node-directory (node)
323 ;; Compute the directory for NODE. 323 ;; Compute the directory for NODE.
324 ;; If it's a directory node, get it from the the node. 324 ;; If it's a directory node, get it from the node.
325 (let ((data (ewoc-data node))) 325 (let ((data (ewoc-data node)))
326 (or (vc-dir-fileinfo->directory data) 326 (or (vc-dir-fileinfo->directory data)
327 ;; Otherwise compute it from the file name. 327 ;; Otherwise compute it from the file name.