Mercurial > emacs
comparison lisp/progmodes/prolog.el @ 2307:10e417efb12a
Added or corrected Commentary sections
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Mon, 22 Mar 1993 03:27:18 +0000 |
parents | 213978acbc1e |
children | f287613dfc28 |
comparison
equal
deleted
inserted
replaced
2306:59c8668f70c7 | 2307:10e417efb12a |
---|---|
75 (setq comment-start "%") | 75 (setq comment-start "%") |
76 (make-local-variable 'comment-start-skip) | 76 (make-local-variable 'comment-start-skip) |
77 (setq comment-start-skip "%+ *") | 77 (setq comment-start-skip "%+ *") |
78 (make-local-variable 'comment-column) | 78 (make-local-variable 'comment-column) |
79 (setq comment-column 48) | 79 (setq comment-column 48) |
80 (make-local-variable 'comment-indent-hook) | 80 (make-local-variable 'comment-indent-function) |
81 (setq comment-indent-hook 'prolog-comment-indent)) | 81 (setq comment-indent-function 'prolog-comment-indent)) |
82 | 82 |
83 (defun prolog-mode-commands (map) | 83 (defun prolog-mode-commands (map) |
84 (define-key map "\t" 'prolog-indent-line) | 84 (define-key map "\t" 'prolog-indent-line) |
85 (define-key map "\e\C-x" 'prolog-consult-region)) | 85 (define-key map "\e\C-x" 'prolog-consult-region)) |
86 | 86 |