diff options
| author | Richard M. Stallman | 2007-03-05 03:13:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-03-05 03:13:41 +0000 |
| commit | aaa114ec71467f15ac43ae3ee874683a78d4fd52 (patch) | |
| tree | 822a145f30899c91d61deef93480761ee7c04456 | |
| parent | aca6c0484694b60d1ec4d282af8f3fc6518ac111 (diff) | |
| download | emacs-aaa114ec71467f15ac43ae3ee874683a78d4fd52.tar.gz emacs-aaa114ec71467f15ac43ae3ee874683a78d4fd52.zip | |
(File Local Variables): Update enable-local-variables values.
| -rw-r--r-- | lispref/variables.texi | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/lispref/variables.texi b/lispref/variables.texi index 8d3e0bb5c25..56732d22db6 100644 --- a/lispref/variables.texi +++ b/lispref/variables.texi | |||
| @@ -1654,10 +1654,21 @@ This section describes the functions and variables that affect | |||
| 1654 | processing of file local variables. | 1654 | processing of file local variables. |
| 1655 | 1655 | ||
| 1656 | @defopt enable-local-variables | 1656 | @defopt enable-local-variables |
| 1657 | This variable controls whether to process file local variables. A | 1657 | This variable controls whether to process file local variables. |
| 1658 | value of @code{t} means to process them, querying the user if unsafe | 1658 | The possible values are: |
| 1659 | variables are encountered; @code{nil} means ignore them; anything else | 1659 | |
| 1660 | means to query the user for each file. The default value is @code{t}. | 1660 | @table @asis |
| 1661 | @item @code{t} (the default) | ||
| 1662 | Set the safe variables, and query (once) about any unsafe variables. | ||
| 1663 | @item @code{:safe} | ||
| 1664 | Set only the safe variables and do not query. | ||
| 1665 | @item @code{:all} | ||
| 1666 | Set all the variables and do not query. | ||
| 1667 | @item @code{nil} | ||
| 1668 | Don't set any variables. | ||
| 1669 | @item anything else | ||
| 1670 | Query (once) about all the variables. | ||
| 1671 | @end table | ||
| 1661 | @end defopt | 1672 | @end defopt |
| 1662 | 1673 | ||
| 1663 | @defun hack-local-variables &optional mode-only | 1674 | @defun hack-local-variables &optional mode-only |