diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 01:44:39 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 01:44:39 +0000 |
commit | a30e71aee84b52e1de298a29a96888150711e4a5 (patch) | |
tree | f1622d0464b75943033c7ba9f02eefe56b493d89 /lisp/cedet/ede/makefile-edit.el | |
parent | 04e65fdbb74c6b08cc340281beb38ddd7d1a7d85 (diff) | |
download | emacs-a30e71aee84b52e1de298a29a96888150711e4a5.tar.gz emacs-a30e71aee84b52e1de298a29a96888150711e4a5.tar.bz2 emacs-a30e71aee84b52e1de298a29a96888150711e4a5.zip |
* files-x.el (modify-dir-local-variable)
(copy-dir-locals-to-file-locals-prop-line):
* cedet/ede/makefile-edit.el (makefile-beginning-of-command)
(makefile-end-of-command):
* cedet/semantic/lex.el (semantic-lex-token):
* cedet/semantic/analyze/fcn.el
(semantic-analyze-dereference-metatype-1):
* cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
(semantic-lex-cpp-undef):
* cedet/semantic/wisent/wisent.el (wisent-skip-block):
* cedet/srecode/srt-mode.el (semantic-beginning-of-context)
(semantic-end-of-context): Fix typos in docstrings.
Diffstat (limited to 'lisp/cedet/ede/makefile-edit.el')
-rw-r--r-- | lisp/cedet/ede/makefile-edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/ede/makefile-edit.el b/lisp/cedet/ede/makefile-edit.el index c255966d5c3..542ea703946 100644 --- a/lisp/cedet/ede/makefile-edit.el +++ b/lisp/cedet/ede/makefile-edit.el @@ -42,7 +42,7 @@ ;;; Code: (defun makefile-beginning-of-command () - "Move the the beginning of the current command." + "Move the beginning of the current command." (interactive) (if (save-excursion (forward-line -1) @@ -57,7 +57,7 @@ (forward-line 1))) (defun makefile-end-of-command () - "Move the the beginning of the current command." + "Move the beginning of the current command." (interactive) (end-of-line) (while (and (makefile-line-continued-p) |