mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-25 21:10:24 -04:00
12 lines
461 B
Plaintext
12 lines
461 B
Plaintext
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.1 2015/05/05 12:38:50 ryoon Exp $
|
|
|
|
To enable COBOL mode, add the following to your ~/.emacs .
|
|
|
|
;;; COBOL mode
|
|
(setq auto-mode-alist (append auto-mode-alist
|
|
'(("\\.cob$" . cobol-mode))))
|
|
(autoload 'cobol-mode "cobol-mode"
|
|
"A major mode for editing ANSI Cobol/Scobol files." t nil)
|
|
===========================================================================
|