diff options
| author | Eli Zaretskii | 2004-06-12 10:16:10 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2004-06-12 10:16:10 +0000 |
| commit | 7c226e4010262aa37501a29ecd4846647ded8ec8 (patch) | |
| tree | 5a979660b4af408fcde57f5431f886167355dccd | |
| parent | a1bcf785a001de3aaa7a24f7e1cf3a42e5121f09 (diff) | |
| download | emacs-7c226e4010262aa37501a29ecd4846647ded8ec8.tar.gz emacs-7c226e4010262aa37501a29ecd4846647ded8ec8.zip | |
(completion-ignored-extensions): Add file extensions
of Python byte-compiled files.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/bindings.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bfd856fc52a..a2677c25d65 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-06-12 J,Ai(Br,At(Bme Marant <jerome@marant.org> (tiny change) | ||
| 2 | |||
| 3 | * bindings.el (completion-ignored-extensions): Add file extensions | ||
| 4 | of Python byte-compiled files. | ||
| 5 | |||
| 1 | 2004-06-12 Juri Linkov <juri@jurta.org> | 6 | 2004-06-12 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | * info.el (Info-goto-node): Add autoload. | 8 | * info.el (Info-goto-node): Add autoload. |
diff --git a/lisp/bindings.el b/lisp/bindings.el index a46026e30d3..b3ea8e562ac 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -524,7 +524,9 @@ is okay. See `mode-line-format'.") | |||
| 524 | ;; files you do want to see, not just TeX stuff. -- fx | 524 | ;; files you do want to see, not just TeX stuff. -- fx |
| 525 | ".toc" ".aux" | 525 | ".toc" ".aux" |
| 526 | ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" | 526 | ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" |
| 527 | ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) | 527 | ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs" |
| 528 | ;; Python byte-compiled | ||
| 529 | ".pyc" ".pyo"))) | ||
| 528 | 530 | ||
| 529 | ;; Suffixes used for executables. | 531 | ;; Suffixes used for executables. |
| 530 | (setq exec-suffixes | 532 | (setq exec-suffixes |