*** dcl-mode-19960121.el Sun Jan 28 17:20:57 1996 --- dcl-mode-19960122.el Sun Jan 28 17:18:03 1996 *************** *** 1,8 **** ;;; dcl-mode.el --- major mode for editing DCL command files ! ;; By Odd Gripenstam ! ;; Last edited 96-01-21 ! ;; ;;; Commentary: --- 1,9 ---- ;;; dcl-mode.el --- major mode for editing DCL command files ! ;; Author: Odd Gripenstam ! ;; Maintainer: Odd Gripenstam ! ;; Last modified: 96-01-21 ! ;; Keywords: DCL editing major-mode ;;; Commentary: *************** *** 37,42 **** --- 38,49 ---- ;; * Help with using lexical functions. (I can never remember the parameter ;; order for f$locate :-) + ;; History: + ;; * Added a (provide 'dcl-mode) at the end. + ;; Richard Levitte 19960121 + ;; * Added a few standard headers at the beginning. + ;; Richard Levitte 19960121 + ;;; Code: (defvar dcl-mode-hook nil *************** *** 142,148 **** THEN-ELSE-ENDIF and between lines matching dcl-block-begin-regexp and dcl-block-end-regexp.) Labels are indented to a fixed position unless they begin or end a block. ! Whole-line comments (starting with "$!") are not indented. Data lines are not indented. Key bindings: --- 149,155 ---- THEN-ELSE-ENDIF and between lines matching dcl-block-begin-regexp and dcl-block-end-regexp.) Labels are indented to a fixed position unless they begin or end a block. ! Whole-line comments (starting with \"$!\") are not indented. Data lines are not indented. Key bindings: *************** *** 615,617 **** --- 622,630 ---- (dcl-was-looking-at "else") (dcl-was-looking-at dcl-label-r)) (dcl-indent-line))))) + + (provide 'dcl-mode) + + (run-hooks 'dcl-mode-load-hook) ; for your customizations + + ;;; dcl-mode.el ends here