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/files-x.el | |
parent | 04e65fdbb74c6b08cc340281beb38ddd7d1a7d85 (diff) | |
download | emacs-a30e71aee84b52e1de298a29a96888150711e4a5.tar.gz |
* 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/files-x.el')
-rw-r--r-- | lisp/files-x.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files-x.el b/lisp/files-x.el index 72e89211efc..f7be79eccfc 100644 --- a/lisp/files-x.el +++ b/lisp/files-x.el @@ -354,7 +354,7 @@ If .dir-locals.el was not found and OP is not `delete' then create this file in the current directory. If OP is `delete' then delete all existing settings of VARIABLE -from the the MODE alist ignoring the input argument VALUE." +from the MODE alist ignoring the input argument VALUE." (catch 'exit (unless enable-local-variables (throw 'exit (message "Directory-local variables are disabled"))) @@ -450,7 +450,7 @@ from the the MODE alist ignoring the input argument VALUE." ;;;###autoload (defun copy-dir-locals-to-file-locals-prop-line () - "Copy directory-local variables to the the -*- line." + "Copy directory-local variables to the -*- line." (interactive) (dolist (elt dir-local-variables-alist) (add-file-local-variable-prop-line (car elt) (cdr elt)))) |