diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 19:53:53 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 19:53:53 +0000 |
commit | 60370d40737ecf92cec4ab75aa73d3ea9ed2d858 (patch) | |
tree | 29c0aec9d5f8e7af681d5ff1b49e72245067cf5c /lisp/forms-pass.el | |
parent | 715a2ca2fc1be26e8420f209c3440b90d687fec6 (diff) | |
download | emacs-60370d40737ecf92cec4ab75aa73d3ea9ed2d858.tar.gz |
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/forms-pass.el')
-rw-r--r-- | lisp/forms-pass.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/forms-pass.el b/lisp/forms-pass.el index 1a7db41e20a..34d4548434b 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 |