comparison lisp/net/snmp-mode.el @ 38436:b174db545cfd

Some fixes to follow coding conventions.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 16 Jul 2001 12:23:00 +0000
parents b56f9152e329
children 5f79f8210ef4
comparison
equal deleted inserted replaced
38435:a9102b5472f0 38436:b174db545cfd
1 ;;; snmp-mode.el --- SNMP & SNMPv2 MIB major mode. 1 ;;; snmp-mode.el --- SNMP & SNMPv2 MIB major mode
2 2
3 ;; Copyright (C) 1995,1998 Free Software Foundation, Inc. 3 ;; Copyright (C) 1995,1998 Free Software Foundation, Inc.
4 4
5 ;; Author: Paul D. Smith <psmith@BayNetworks.com> 5 ;; Author: Paul D. Smith <psmith@BayNetworks.com>
6 ;; Keywords: data 6 ;; Keywords: data
19 19
20 ;; You should have received a copy of the GNU General Public License 20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA. 23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
24 26
25 ;; INTRODUCTION 27 ;; INTRODUCTION
26 ;; ------------ 28 ;; ------------
27 ;; This package provides a major mode for editing SNMP MIBs. It 29 ;; This package provides a major mode for editing SNMP MIBs. It
28 ;; provides all the modern Emacs 19 bells and whistles: default 30 ;; provides all the modern Emacs 19 bells and whistles: default
79 ;; 81 ;;
80 ;; (add-hook 'snmp-common-mode-hook 'turn-on-font-lock) 82 ;; (add-hook 'snmp-common-mode-hook 'turn-on-font-lock)
81 ;; 83 ;;
82 ;; Enabling global-font-lock-mode is also sufficient. 84 ;; Enabling global-font-lock-mode is also sufficient.
83 ;; 85 ;;
86
87 ;;; Code:
84 88
85 ;;;---------------------------------------------------------------------------- 89 ;;;----------------------------------------------------------------------------
86 ;; 90 ;;
87 ;; Customize these: 91 ;; Customize these:
88 ;; 92 ;;
711 'snmpv2-tempo-tags) 715 'snmpv2-tempo-tags)
712 716
713 717
714 (provide 'snmp-mode) 718 (provide 'snmp-mode)
715 719
716 ;; snmp-mode.el ends here 720 ;;; snmp-mode.el ends here