]> git.eshelyaron.com Git - emacs.git/commitdiff
Derive some programming modes from prog-mode.
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 15 Jun 2011 14:07:48 +0000 (07:07 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 15 Jun 2011 14:07:48 +0000 (07:07 -0700)
* lisp/progmodes/python.el (python-mode): Derive from prog-mode.
* lisp/progmodes/ps-mode.el (ps-mode):
* lisp/progmodes/mixal-mode.el (mixal-mode):
* lisp/progmodes/ld-script.el (ld-script-mode): Likewise.

lisp/ChangeLog
lisp/progmodes/ld-script.el
lisp/progmodes/mixal-mode.el
lisp/progmodes/ps-mode.el
lisp/progmodes/python.el

index d4b554464a790bb675a43f252aaae6b2344a3aa7..b868daaf9079ab9071587d3c0c51d27a519200c9 100644 (file)
@@ -1,3 +1,10 @@
+2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * progmodes/python.el (python-mode): Derive from prog-mode.
+       * progmodes/ps-mode.el (ps-mode):
+       * progmodes/mixal-mode.el (mixal-mode):
+       * progmodes/ld-script.el (ld-script-mode): Likewise.
+
 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (display-buffer-alist): Trim default value to avoid
index 8bdac61d4ab67fb2d6ba55c942b4f5c4c0e0033b..c682bfa0280357492feeb2767d29209fe998ea0c 100644 (file)
   "Default font-lock-keywords for `ld-script-mode'.")
 
 ;;;###autoload
-(define-derived-mode ld-script-mode nil "LD-Script"
+(define-derived-mode ld-script-mode prog-mode "LD-Script"
    "A major mode to edit GNU ld script files"
   (set (make-local-variable 'comment-start) "/* ")
   (set (make-local-variable 'comment-end)   " */")
index 0d8cdd9f9b167f8260e006423a66441b59dbf75f..103c7be7d3c01a44070ef42ccb290cf04a413e41 100644 (file)
@@ -1103,7 +1103,7 @@ Assumes that file has been compiled with debugging support."
     (error "mixvm.el needs to be loaded to run `mixvm'")))
 
 ;;;###autoload
-(define-derived-mode mixal-mode fundamental-mode "mixal"
+(define-derived-mode mixal-mode prog-mode "mixal"
   "Major mode for the mixal asm language."
   (set (make-local-variable 'comment-start) "*")
   (set (make-local-variable 'comment-start-skip) "^\\*[ \t]*")
index cade56a194c587295dad82f4477fc35d65877ab8..d60e7513651fe50a36439e9a149f5142649de978 100644 (file)
@@ -485,7 +485,7 @@ If nil, use `temporary-file-directory'."
 ;; PostScript mode.
 
 ;;;###autoload
-(define-derived-mode ps-mode fundamental-mode "PostScript"
+(define-derived-mode ps-mode prog-mode "PostScript"
   "Major mode for editing PostScript with GNU Emacs.
 
 Entry to this mode calls `ps-mode-hook'.
index b99cad1d081161b6f5d5243afb081ccbffcc3133..3d243f14f07267cc64d8208ea28b2c042fa031ed 100644 (file)
@@ -2420,7 +2420,7 @@ without confirmation."
 (defvar python-mode-running)            ;Dynamically scoped var.
 
 ;;;###autoload
-(define-derived-mode python-mode fundamental-mode "Python"
+(define-derived-mode python-mode prog-mode "Python"
   "Major mode for editing Python files.
 Turns on Font Lock mode unconditionally since it is currently required
 for correct parsing of the source.