comparison lisp/snmp-mode.el @ 24176:077a147742fc

(snmpv2-mode, snmpv-mode): Add autoload cookies -- see auto-mode-alist.
author Dave Love <fx@gnu.org>
date Mon, 25 Jan 1999 18:54:10 +0000
parents 44cb6e3cab44
children bc3afd224741
comparison
equal deleted inserted replaced
24175:ec6c3e69f89a 24176:077a147742fc
352 (setq require-final-newline t)) 352 (setq require-final-newline t))
353 353
354 354
355 ;; SNMPv1 MIB Editing Mode. 355 ;; SNMPv1 MIB Editing Mode.
356 ;; 356 ;;
357 ;;;###autoload
357 (defun snmp-mode () 358 (defun snmp-mode ()
358 "Major mode for editing SNMP MIBs. 359 "Major mode for editing SNMP MIBs.
359 Expression and list commands understand all C brackets. 360 Expression and list commands understand all C brackets.
360 Tab indents for C code. 361 Tab indents for C code.
361 Comments start with -- and end with newline or another --. 362 Comments start with -- and end with newline or another --.
387 ;; Run hooks 388 ;; Run hooks
388 (run-hooks 'snmp-common-mode-hook) 389 (run-hooks 'snmp-common-mode-hook)
389 (run-hooks 'snmp-mode-hook)) 390 (run-hooks 'snmp-mode-hook))
390 391
391 392
393 ;;;###autoload
392 (defun snmpv2-mode () 394 (defun snmpv2-mode ()
393 "Major mode for editing SNMPv2 MIBs. 395 "Major mode for editing SNMPv2 MIBs.
394 Expression and list commands understand all C brackets. 396 Expression and list commands understand all C brackets.
395 Tab indents for C code. 397 Tab indents for C code.
396 Comments start with -- and end with newline or another --. 398 Comments start with -- and end with newline or another --.