diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-07-31 18:46:58 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-07-31 18:46:58 +0300 |
commit | cd83d522096f71e14fd8836f5bd7378b5eb1cb1c (patch) | |
tree | 55f8700cea5930ecf91b668f039509c33babdf5d /lisp/files.el | |
parent | 28e5cf7c6afc606436f6a6df448cd582e92867d7 (diff) | |
download | emacs-cd83d522096f71e14fd8836f5bd7378b5eb1cb1c.tar.gz emacs-cd83d522096f71e14fd8836f5bd7378b5eb1cb1c.tar.bz2 emacs-cd83d522096f71e14fd8836f5bd7378b5eb1cb1c.zip |
Add a Hebrew translation of the tutorial.
etc/tutorials/TUTORIAL.he: New file.
etc/tutorials/TUTORIAL.translators: Add TUTORIAL.he.
lisp/files.el (bidi-paragraph-direction): Define safe local values.
lisp/language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
language-info-alist. Remove outdated FIXME in a comment.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index d30531b17e5..8b131e04ebc 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2784,6 +2784,9 @@ asking you for confirmation." (truncate-lines . booleanp) ;; C source code (bidi-display-reordering . booleanp))) ;; C source code +(put 'bidi-paragraph-direction 'safe-local-variable + (lambda (v) (memq v '(nil right-to-left left-to-right)))) + (put 'c-set-style 'safe-local-eval-function t) (defvar file-local-variables-alist nil |