Mercurial > emacs
annotate lisp/forms-pass.el @ 2170:3f45176fe02f
Wed Mar 10 23:00:51 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* MACHINES: Update description of SYSVr3 and r4 support, due to
Eric Raymond's changes.
Tue Mar 9 10:57:57 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* MACHINES: Mention that you have to edit the configure script
when you add support for a new machine, to get it to recognize the
configuration name.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 14 Mar 1993 20:34:26 +0000 |
parents | 785babb5bb6f |
children | 84acc3adcd63 |
rev | line source |
---|---|
306 | 1 ;; demo for forms-mode -*-emacs-lisp-*- |
275 | 2 ;; |
306 | 3 ;; This demo visits your passwd file. |
275 | 4 |
306 | 5 ;; use yp if present |
6 (or (file-exists-p (setq forms-file "/var/yp/src/passwd")) | |
7 (setq forms-file "/etc/passwd")) | |
8 | |
275 | 9 (setq forms-read-only t) ; to make sure |
10 (setq forms-field-sep ":") | |
11 (setq forms-number-of-fields 7) | |
306 | 12 |
275 | 13 (setq forms-format-list |
306 | 14 (list |
15 "====== Visiting " forms-file " ======\n\n" | |
275 | 16 "User : " 1 |
17 " Uid: " 3 | |
18 " Gid: " 4 | |
19 "\n\n" | |
20 "Name : " 5 | |
21 "\n\n" | |
22 "Home : " 6 | |
23 "\n\n" | |
24 "Shell: " 7 | |
25 "\n")) |