diff options
| author | Fabián Ezequiel Gallina | 2012-07-18 16:04:06 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2012-07-18 16:04:06 -0300 |
| commit | d617c457bd9712ea07b138ab6f069dd8ab794b57 (patch) | |
| tree | 4b3f158142d94a9c2d30807bd9fd851f75923112 /lisp/progmodes/python.el | |
| parent | d583cbe6814dee8e976e00c2d71fa874a0310e36 (diff) | |
| download | emacs-d617c457bd9712ea07b138ab6f069dd8ab794b57.tar.gz emacs-d617c457bd9712ea07b138ab6f069dd8ab794b57.zip | |
progmodes/python.el: Set file local vars at end of file and clean tabs.
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index b5474732316..23e040366dc 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; python.el --- Python's flying circus support for Emacs -*- coding: utf-8 -*- | 1 | ;;; python.el --- Python's flying circus support for Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2012 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -2262,7 +2262,7 @@ be added to `python-mode-abbrev-table'." | |||
| 2262 | (function-name (intern (concat "python-skeleton-" name)))) | 2262 | (function-name (intern (concat "python-skeleton-" name)))) |
| 2263 | `(progn | 2263 | `(progn |
| 2264 | (define-abbrev python-mode-abbrev-table ,name "" ',function-name | 2264 | (define-abbrev python-mode-abbrev-table ,name "" ',function-name |
| 2265 | :system t) | 2265 | :system t) |
| 2266 | (setq python-skeleton-available | 2266 | (setq python-skeleton-available |
| 2267 | (cons ',function-name python-skeleton-available)) | 2267 | (cons ',function-name python-skeleton-available)) |
| 2268 | (define-skeleton ,function-name | 2268 | (define-skeleton ,function-name |
| @@ -2911,4 +2911,10 @@ if that value is non-nil." | |||
| 2911 | 2911 | ||
| 2912 | 2912 | ||
| 2913 | (provide 'python) | 2913 | (provide 'python) |
| 2914 | |||
| 2915 | ;; Local Variables: | ||
| 2916 | ;; coding: utf-8 | ||
| 2917 | ;; indent-tabs-mode: nil | ||
| 2918 | ;; End: | ||
| 2919 | |||
| 2914 | ;;; python.el ends here | 2920 | ;;; python.el ends here |