aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/forms-pass.el
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-07-15 19:53:53 +0000
committerPavel Janík <[email protected]>2001-07-15 19:53:53 +0000
commit60370d40737ecf92cec4ab75aa73d3ea9ed2d858 (patch)
tree29c0aec9d5f8e7af681d5ff1b49e72245067cf5c /lisp/forms-pass.el
parent715a2ca2fc1be26e8420f209c3440b90d687fec6 (diff)
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/forms-pass.el')
-rw-r--r--lisp/forms-pass.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/forms-pass.el b/lisp/forms-pass.el
index 1a7db41e20..34d4548434 100644
--- a/lisp/forms-pass.el
+++ b/lisp/forms-pass.el
@@ -1,7 +1,13 @@
;;; forms-pass.el --- passwd file demo for forms-mode
+;; This file is part of GNU Emacs.
+
+;;; Commentary:
+
;; This demo visits your passwd file.
+;;; Code:
+
;; use yp if present
(or (file-exists-p (setq forms-file "/var/yp/src/passwd"))
(setq forms-file "/etc/passwd"))
@@ -23,3 +29,5 @@
"\n\n"
"Shell: " 7
"\n"))
+
+;;; forms-pass.el ends here