Mercurial > emacs
comparison lisp/progmodes/python.el @ 105798:0ad1fc06bfc8
* puresize.h (BASE_PURESIZE): Increase to 1470000.
* lread.c (Fload): Purecopy the file name when building Vpreloaded_file_list.
* textmodes/ispell.el (ispell-skip-region-alist):
* international/mule-conf.el (eight-bit):
* international/fontset.el (font-encoding-alist):
* startup.el (pure-space-overflow-message):
* simple.el (overwrite-mode-textual, overwrite-mode-binary):
* paths.el (gnus-nntp-service, rmail-spool-directory)
(term-file-prefix):
* files.el (save-some-buffers-action-alist):
* cmuscheme.el (same-window-buffer-names):
* ielm.el (same-window-buffer-names):
* shell.el (same-window-buffer-names):
* mail/sendmail.el (same-window-buffer-names):
* progmodes/inf-lisp.el (same-window-buffer-names):
* bindings.el (mode-line-client)
(mode-line-column-line-number-mode-map):
* language/tibetan.el (tibetan-precomposition-rule-regexp)
(tibetan-precomposed-regexp): Purecopy string arguments.
| author | Dan Nicolaescu <dann@ics.uci.edu> |
|---|---|
| date | Fri, 30 Oct 2009 02:00:11 +0000 |
| parents | bd2966850aac |
| children | df4934f25eef |
comparison
equal
deleted
inserted
replaced
| 105797:881d56e9c3b5 | 105798:0ad1fc06bfc8 |
|---|---|
| 85 ;;;###autoload | 85 ;;;###autoload |
| 86 (add-to-list 'interpreter-mode-alist '("jython" . jython-mode)) | 86 (add-to-list 'interpreter-mode-alist '("jython" . jython-mode)) |
| 87 ;;;###autoload | 87 ;;;###autoload |
| 88 (add-to-list 'interpreter-mode-alist '("python" . python-mode)) | 88 (add-to-list 'interpreter-mode-alist '("python" . python-mode)) |
| 89 ;;;###autoload | 89 ;;;###autoload |
| 90 (add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode)) | 90 (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) |
| 91 (add-to-list 'same-window-buffer-names "*Python*") | 91 (add-to-list 'same-window-buffer-names (purecopy "*Python*")) |
| 92 | 92 |
| 93 ;;;; Font lock | 93 ;;;; Font lock |
| 94 | 94 |
| 95 (defvar python-font-lock-keywords | 95 (defvar python-font-lock-keywords |
| 96 `(,(rx symbol-start | 96 `(,(rx symbol-start |
