diff options
| author | Paul Eggert | 2011-06-15 11:07:38 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-15 11:07:38 -0700 |
| commit | ff672d2c8785de6faba84a400fb8153e9fa07cd2 (patch) | |
| tree | 4c5dc68b7a92e54c86e47f3bd9a804c14be57091 /lisp/progmodes | |
| parent | e69dafade3ccd5c2997a3f6fd6c7bea29e75ad8e (diff) | |
| parent | b96e6cde3e311cd79f8ad134291d41c8c64cc6ad (diff) | |
| download | emacs-ff672d2c8785de6faba84a400fb8153e9fa07cd2.tar.gz emacs-ff672d2c8785de6faba84a400fb8153e9fa07cd2.zip | |
Merge from trunk.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/cfengine.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/ld-script.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/mixal-mode.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/ps-mode.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/cfengine.el b/lisp/progmodes/cfengine.el index a475bbd5932..22ece17cb28 100644 --- a/lisp/progmodes/cfengine.el +++ b/lisp/progmodes/cfengine.el | |||
| @@ -198,7 +198,7 @@ Intended as the value of `indent-line-function'." | |||
| 198 | t)) | 198 | t)) |
| 199 | 199 | ||
| 200 | ;;;###autoload | 200 | ;;;###autoload |
| 201 | (define-derived-mode cfengine-mode fundamental-mode "Cfengine" | 201 | (define-derived-mode cfengine-mode prog-mode "Cfengine" |
| 202 | "Major mode for editing cfengine input. | 202 | "Major mode for editing cfengine input. |
| 203 | There are no special keybindings by default. | 203 | There are no special keybindings by default. |
| 204 | 204 | ||
diff --git a/lisp/progmodes/ld-script.el b/lisp/progmodes/ld-script.el index 8bdac61d4ab..c682bfa0280 100644 --- a/lisp/progmodes/ld-script.el +++ b/lisp/progmodes/ld-script.el | |||
| @@ -168,7 +168,7 @@ | |||
| 168 | "Default font-lock-keywords for `ld-script-mode'.") | 168 | "Default font-lock-keywords for `ld-script-mode'.") |
| 169 | 169 | ||
| 170 | ;;;###autoload | 170 | ;;;###autoload |
| 171 | (define-derived-mode ld-script-mode nil "LD-Script" | 171 | (define-derived-mode ld-script-mode prog-mode "LD-Script" |
| 172 | "A major mode to edit GNU ld script files" | 172 | "A major mode to edit GNU ld script files" |
| 173 | (set (make-local-variable 'comment-start) "/* ") | 173 | (set (make-local-variable 'comment-start) "/* ") |
| 174 | (set (make-local-variable 'comment-end) " */") | 174 | (set (make-local-variable 'comment-end) " */") |
diff --git a/lisp/progmodes/mixal-mode.el b/lisp/progmodes/mixal-mode.el index 0d8cdd9f9b1..103c7be7d3c 100644 --- a/lisp/progmodes/mixal-mode.el +++ b/lisp/progmodes/mixal-mode.el | |||
| @@ -1103,7 +1103,7 @@ Assumes that file has been compiled with debugging support." | |||
| 1103 | (error "mixvm.el needs to be loaded to run `mixvm'"))) | 1103 | (error "mixvm.el needs to be loaded to run `mixvm'"))) |
| 1104 | 1104 | ||
| 1105 | ;;;###autoload | 1105 | ;;;###autoload |
| 1106 | (define-derived-mode mixal-mode fundamental-mode "mixal" | 1106 | (define-derived-mode mixal-mode prog-mode "mixal" |
| 1107 | "Major mode for the mixal asm language." | 1107 | "Major mode for the mixal asm language." |
| 1108 | (set (make-local-variable 'comment-start) "*") | 1108 | (set (make-local-variable 'comment-start) "*") |
| 1109 | (set (make-local-variable 'comment-start-skip) "^\\*[ \t]*") | 1109 | (set (make-local-variable 'comment-start-skip) "^\\*[ \t]*") |
diff --git a/lisp/progmodes/ps-mode.el b/lisp/progmodes/ps-mode.el index cade56a194c..d60e7513651 100644 --- a/lisp/progmodes/ps-mode.el +++ b/lisp/progmodes/ps-mode.el | |||
| @@ -485,7 +485,7 @@ If nil, use `temporary-file-directory'." | |||
| 485 | ;; PostScript mode. | 485 | ;; PostScript mode. |
| 486 | 486 | ||
| 487 | ;;;###autoload | 487 | ;;;###autoload |
| 488 | (define-derived-mode ps-mode fundamental-mode "PostScript" | 488 | (define-derived-mode ps-mode prog-mode "PostScript" |
| 489 | "Major mode for editing PostScript with GNU Emacs. | 489 | "Major mode for editing PostScript with GNU Emacs. |
| 490 | 490 | ||
| 491 | Entry to this mode calls `ps-mode-hook'. | 491 | Entry to this mode calls `ps-mode-hook'. |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index b99cad1d081..3d243f14f07 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -2420,7 +2420,7 @@ without confirmation." | |||
| 2420 | (defvar python-mode-running) ;Dynamically scoped var. | 2420 | (defvar python-mode-running) ;Dynamically scoped var. |
| 2421 | 2421 | ||
| 2422 | ;;;###autoload | 2422 | ;;;###autoload |
| 2423 | (define-derived-mode python-mode fundamental-mode "Python" | 2423 | (define-derived-mode python-mode prog-mode "Python" |
| 2424 | "Major mode for editing Python files. | 2424 | "Major mode for editing Python files. |
| 2425 | Turns on Font Lock mode unconditionally since it is currently required | 2425 | Turns on Font Lock mode unconditionally since it is currently required |
| 2426 | for correct parsing of the source. | 2426 | for correct parsing of the source. |