Mercurial > hg > xemacs-beta
comparison lisp/modes/cperl-mode.el @ 20:859a2309aef8 r19-15b93
Import from CVS: tag r19-15b93
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:50:05 +0200 |
parents | b82b59fe008d |
children | ec9a17fef872 |
comparison
equal
deleted
inserted
replaced
19:ac1f612d5250 | 20:859a2309aef8 |
---|---|
30 | 30 |
31 | 31 |
32 ;;; Corrections made by Ilya Zakharevich ilya@math.mps.ohio-state.edu | 32 ;;; Corrections made by Ilya Zakharevich ilya@math.mps.ohio-state.edu |
33 ;;; XEmacs changes by Peter Arius arius@informatik.uni-erlangen.de | 33 ;;; XEmacs changes by Peter Arius arius@informatik.uni-erlangen.de |
34 | 34 |
35 ;; $Id: cperl-mode.el,v 1.1.1.3 1996/12/18 03:53:13 steve Exp $ | 35 ;; $Id: cperl-mode.el,v 1.2 1997/02/09 23:51:33 steve Exp $ |
36 | 36 |
37 ;;; To use this mode put the following into your .emacs file: | 37 ;;; To use this mode put the following into your .emacs file: |
38 | 38 |
39 ;; (autoload 'perl-mode "cperl-mode" "alternate mode for editing Perl programs" t) | 39 ;; (autoload 'perl-mode "cperl-mode" "alternate mode for editing Perl programs" t) |
40 | 40 |
4524 (if (not (eq major-mode 'perl-mode)) nil | 4524 (if (not (eq major-mode 'perl-mode)) nil |
4525 (let ((cperl-message-on-help-error nil)) | 4525 (let ((cperl-message-on-help-error nil)) |
4526 (cperl-get-help) | 4526 (cperl-get-help) |
4527 (setq cperl-help-shown t)))) | 4527 (setq cperl-help-shown t)))) |
4528 (cperl-lazy-install))) | 4528 (cperl-lazy-install))) |
4529 | |
4530 (provide 'cperl-mode) | |
4531 | |
4532 ;;; cperl-mode.el ends here |