diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2004-06-12 10:16:10 +0000 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2004-06-12 10:16:10 +0000 |
| commit | 7c226e4010262aa37501a29ecd4846647ded8ec8 (patch) | |
| tree | 5a979660b4af408fcde57f5431f886167355dccd | |
| parent | a1bcf785a001de3aaa7a24f7e1cf3a42e5121f09 (diff) | |
| download | emacs-7c226e4010262aa37501a29ecd4846647ded8ec8.tar.gz | |
(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 @@ +2004-06-12 J,Ai(Br,At(Bme Marant <jerome@marant.org> (tiny change) + + * bindings.el (completion-ignored-extensions): Add file extensions + of Python byte-compiled files. + 2004-06-12 Juri Linkov <juri@jurta.org> * 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'.") ;; files you do want to see, not just TeX stuff. -- fx ".toc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" - ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) + ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs" + ;; Python byte-compiled + ".pyc" ".pyo"))) ;; Suffixes used for executables. (setq exec-suffixes |
