diff options
| author | Dave Love | 2002-07-24 22:22:47 +0000 |
|---|---|---|
| committer | Dave Love | 2002-07-24 22:22:47 +0000 |
| commit | d21ba5e07da8a201b70193aa0c693d6bcf9f18e1 (patch) | |
| tree | 6136c478d01e50375e08c8c19303befce0951299 | |
| parent | d37ef0f64ee94a37a9ff959870699b84e8ae9773 (diff) | |
| download | emacs-d21ba5e07da8a201b70193aa0c693d6bcf9f18e1.tar.gz emacs-d21ba5e07da8a201b70193aa0c693d6bcf9f18e1.zip | |
(set-auto-coding): Doc fix.
| -rw-r--r-- | lisp/international/mule.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index e5fdf415e1e..346133053cd 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -1541,18 +1541,18 @@ This is used for loading and byte-compiling Emacs Lisp files.") | |||
| 1541 | These bytes should include at least the first 1k of the file | 1541 | These bytes should include at least the first 1k of the file |
| 1542 | and the last 3k of the file, but the middle may be omitted. | 1542 | and the last 3k of the file, but the middle may be omitted. |
| 1543 | 1543 | ||
| 1544 | It checks FILENAME against the variable `auto-coding-alist'. If | 1544 | The function checks FILENAME against the variable `auto-coding-alist'. |
| 1545 | FILENAME doesn't match any entries in the variable, it checks the | 1545 | If FILENAME doesn't match any entries in the variable, it checks the |
| 1546 | contents of the current buffer following point against | 1546 | contents of the current buffer following point against |
| 1547 | `auto-coding-regexp-alist'. If no match is found, it checks for a | 1547 | `auto-coding-regexp-alist'. If no match is found, it checks for a |
| 1548 | `coding:' tag in the first one or two lines following point. If no | 1548 | `coding:' tag in the first one or two lines following point. If no |
| 1549 | `coding:' tag is found, it checks for local variables list in the last | 1549 | `coding:' tag is found, it checks any local variables list in the last |
| 1550 | 3K bytes out of the SIZE bytes. Finally, if none of these methods | 1550 | 3K bytes out of the SIZE bytes. Finally, if none of these methods |
| 1551 | succeed, then it checks to see if any function in | 1551 | succeed, it checks to see if any function in `auto-coding-functions' |
| 1552 | `auto-coding-functions' gives a match. | 1552 | gives a match. |
| 1553 | 1553 | ||
| 1554 | The return value is the specified coding system, | 1554 | The return value is the specified coding system, or nil if nothing is |
| 1555 | or nil if nothing specified. | 1555 | specified. |
| 1556 | 1556 | ||
| 1557 | The variable `set-auto-coding-function' (which see) is set to this | 1557 | The variable `set-auto-coding-function' (which see) is set to this |
| 1558 | function by default." | 1558 | function by default." |