annotate lisp/forms-d2.el @ 50507:110c0e29159c

Handle multiple desktop files in different dirs. Other cleanups. Command line option --no-desktop introduced. (desktop-read): Record buffers in the desktop file in the same order as that in the buffer list, (desktop-save): Put buffers in the order given in desktop file, regardless of what handlers do. (desktop-file-version): New variable. Version number of desktop file format. (desktop-create-buffer-form): Variable deleted. (desktop-save): New customizable variable. (desktop-kill): Changed to use `desktop-save'. (desktop-file-name-format): New option: format in which desktop file names should be saved. (desktop-file-name): New function to convert a filename to the format specified in `desktop-file-name-format'. (desktop-create-buffer): Parameters renamed to descriptive systematic names. These parameters are visible to handlers. Renames: ver -> desktop-file-version mim -> desktop-buffer-minor-modes pt -> desktop-buffer-point mk -> desktop-buffer-mark ro -> desktop-buffer-read-only locals -> desktop-buffer-locals (desktop-buffer-major-mode, desktop-buffer-file-name) (desktop-buffer-name): Unused customizable variables deleted. (desktop-buffer-misc): Unused variable deleted. (desktop-save, desktop-buffer-dired-misc-data): Use `desktop-file-name'. (desktop-path): New customizable variable. List of directories in which to lookup the desktop file. Replaces hardcoded list. (desktop-globals-to-clear): New variable replaces hardcoded list. (desktop-clear-preserve-buffers-regexp): New customizable variable. (desktop-after-read-hook): New hook run after a desktop is read. (desktop-no-desktop-file-hook): New hook when no desktop file found. (desktop-change-dir): New function. (desktop-save-in-load-dir): New function. Save desktop in directory from witch it was loaded. (desktop-revert): New function. Revert to the last loaded desktop.
author Richard M. Stallman <rms@gnu.org>
date Wed, 09 Apr 2003 01:37:56 +0000
parents 37645a051842
children 695cf19ef79e d7ddb3e565de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47726
33d53d287ee4 Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents: 38436
diff changeset
1 ;;; forms-d2.el --- demo forms-mode -*- no-byte-compile: t -*-
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
2
Dave Love <fx@gnu.org>
parents:
diff changeset
3 ;; Author: Johan Vromans <jvromans@squirrel.nl>
Dave Love <fx@gnu.org>
parents:
diff changeset
4 ;; Created: 1989
Dave Love <fx@gnu.org>
parents:
diff changeset
5
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
6 ;; This file is part of GNU Emacs.
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
7
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
8 ;;; Commentary:
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
9
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
10 ;; This sample forms exploit most of the features of forms mode.
Dave Love <fx@gnu.org>
parents:
diff changeset
11
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
12 ;;; Code:
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
13
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
14 ;; Set the name of the data file.
Dave Love <fx@gnu.org>
parents:
diff changeset
15 (setq forms-file "forms-d2.dat")
Dave Love <fx@gnu.org>
parents:
diff changeset
16
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; Use 'forms-enumerate' to set field names and number thereof.
Dave Love <fx@gnu.org>
parents:
diff changeset
18 (setq forms-number-of-fields
Dave Love <fx@gnu.org>
parents:
diff changeset
19 (forms-enumerate
Dave Love <fx@gnu.org>
parents:
diff changeset
20 '(arch-newsgroup ; 1
Dave Love <fx@gnu.org>
parents:
diff changeset
21 arch-volume ; 2
Dave Love <fx@gnu.org>
parents:
diff changeset
22 arch-issue ; and ...
Dave Love <fx@gnu.org>
parents:
diff changeset
23 arch-article ; ... so
Dave Love <fx@gnu.org>
parents:
diff changeset
24 arch-shortname ; ... ... on
Dave Love <fx@gnu.org>
parents:
diff changeset
25 arch-parts
Dave Love <fx@gnu.org>
parents:
diff changeset
26 arch-from
Dave Love <fx@gnu.org>
parents:
diff changeset
27 arch-longname
Dave Love <fx@gnu.org>
parents:
diff changeset
28 arch-keywords
Dave Love <fx@gnu.org>
parents:
diff changeset
29 arch-date
Dave Love <fx@gnu.org>
parents:
diff changeset
30 arch-remarks)))
Dave Love <fx@gnu.org>
parents:
diff changeset
31
Dave Love <fx@gnu.org>
parents:
diff changeset
32 ;; The following functions are used by this form for layout purposes.
Dave Love <fx@gnu.org>
parents:
diff changeset
33 ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
34 (defun arch-tocol (target &optional fill)
Dave Love <fx@gnu.org>
parents:
diff changeset
35 "Produces a string to skip to column TARGET. Prepends newline if needed.
Dave Love <fx@gnu.org>
parents:
diff changeset
36 The optional FILL should be a character, used to fill to the column."
Dave Love <fx@gnu.org>
parents:
diff changeset
37 (if (null fill)
Dave Love <fx@gnu.org>
parents:
diff changeset
38 (setq fill ? ))
Dave Love <fx@gnu.org>
parents:
diff changeset
39 (if (< target (current-column))
Dave Love <fx@gnu.org>
parents:
diff changeset
40 (concat "\n" (make-string target fill))
Dave Love <fx@gnu.org>
parents:
diff changeset
41 (make-string (- target (current-column)) fill)))
Dave Love <fx@gnu.org>
parents:
diff changeset
42 ;;
49588
37645a051842 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47726
diff changeset
43 (defun arch-rj (target field &optional fill)
25867
Dave Love <fx@gnu.org>
parents:
diff changeset
44 "Produces a string to skip to column TARGET minus the width of field FIELD.
Dave Love <fx@gnu.org>
parents:
diff changeset
45 Prepends newline if needed. The optional FILL should be a character,
Dave Love <fx@gnu.org>
parents:
diff changeset
46 used to fill to the column."
Dave Love <fx@gnu.org>
parents:
diff changeset
47 (arch-tocol (- target (length (nth field forms-fields))) fill))
Dave Love <fx@gnu.org>
parents:
diff changeset
48
Dave Love <fx@gnu.org>
parents:
diff changeset
49 ;; Record filters.
Dave Love <fx@gnu.org>
parents:
diff changeset
50 ;;
Dave Love <fx@gnu.org>
parents:
diff changeset
51 (defun arch-new-record-filter (the-record)
Dave Love <fx@gnu.org>
parents:
diff changeset
52 "Form a new record with some defaults."
Dave Love <fx@gnu.org>
parents:
diff changeset
53 (aset the-record arch-from (user-full-name))
Dave Love <fx@gnu.org>
parents:
diff changeset
54 (aset the-record arch-date (current-time-string))
Dave Love <fx@gnu.org>
parents:
diff changeset
55 the-record ; return it
Dave Love <fx@gnu.org>
parents:
diff changeset
56 )
Dave Love <fx@gnu.org>
parents:
diff changeset
57 (setq forms-new-record-filter 'arch-new-record-filter)
Dave Love <fx@gnu.org>
parents:
diff changeset
58
Dave Love <fx@gnu.org>
parents:
diff changeset
59 ;; The format list.
Dave Love <fx@gnu.org>
parents:
diff changeset
60 (setq forms-format-list
Dave Love <fx@gnu.org>
parents:
diff changeset
61 (list
Dave Love <fx@gnu.org>
parents:
diff changeset
62 "====== Public Domain Software Archive ======\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
63 arch-shortname
Dave Love <fx@gnu.org>
parents:
diff changeset
64 " - " arch-longname
Dave Love <fx@gnu.org>
parents:
diff changeset
65 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
66 "Article: " arch-newsgroup
Dave Love <fx@gnu.org>
parents:
diff changeset
67 "/" arch-article
Dave Love <fx@gnu.org>
parents:
diff changeset
68 " "
Dave Love <fx@gnu.org>
parents:
diff changeset
69 '(arch-tocol 40)
Dave Love <fx@gnu.org>
parents:
diff changeset
70 "Issue: " arch-issue
Dave Love <fx@gnu.org>
parents:
diff changeset
71 " "
Dave Love <fx@gnu.org>
parents:
diff changeset
72 '(arch-rj 73 10)
Dave Love <fx@gnu.org>
parents:
diff changeset
73 "Date: " arch-date
Dave Love <fx@gnu.org>
parents:
diff changeset
74 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
75 "Submitted by: " arch-from
Dave Love <fx@gnu.org>
parents:
diff changeset
76 "\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
77 '(arch-tocol 79 ?-)
Dave Love <fx@gnu.org>
parents:
diff changeset
78 "\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
79 "Keywords: " arch-keywords
Dave Love <fx@gnu.org>
parents:
diff changeset
80 "\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
81 "Parts: " arch-parts
Dave Love <fx@gnu.org>
parents:
diff changeset
82 "\n\n====== Remarks ======\n\n"
Dave Love <fx@gnu.org>
parents:
diff changeset
83 arch-remarks
Dave Love <fx@gnu.org>
parents:
diff changeset
84 ))
Dave Love <fx@gnu.org>
parents:
diff changeset
85
Dave Love <fx@gnu.org>
parents:
diff changeset
86 ;; That's all, folks!
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
87
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 25867
diff changeset
88 ;;; forms-d2.el ends here