Mercurial > emacs
annotate lisp/forms.el @ 4124:a91cdccf5458
* Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
directory's makefile. This allows the invocation of CPP which
builds xmakefile to receive these switches. The SunSoft C
preprocessor inserts spaces between tokens if it doesn't get the
-Xs flag requested in src/s/sol2.h.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 18 Jul 1993 06:10:46 +0000 |
parents | 25d32add267c |
children | 6a3f5f51897b |
rev | line source |
---|---|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1 ;;; forms.el -- Forms mode: edit a file as a form to fill in. |
3828 | 2 ;;; Copyright (C) 1991, 1993 Free Software Foundation, Inc. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
3 |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
4 ;; Author: Johan Vromans <jv@mh.nl> |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
5 ;; Version: 2.0 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
6 |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
7 ;; This file is part of GNU Emacs. |
276 | 8 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
9 ;; GNU Emacs is free software; you can redistribute it and/or modify |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
10 ;; it under the terms of the GNU General Public License as published by |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
12 ;; any later version. |
276 | 13 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
14 ;; GNU Emacs is distributed in the hope that it will be useful, |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
17 ;; GNU General Public License for more details. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
18 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
19 ;; You should have received a copy of the GNU General Public License |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
20 ;; along with GNU Emacs; see the file COPYING. If not, write to |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
22 |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
23 ;;; Commentary: |
276 | 24 |
25 ;;; Visit a file using a form. | |
26 ;;; | |
27 ;;; === Naming conventions | |
28 ;;; | |
29 ;;; The names of all variables and functions start with 'form-'. | |
30 ;;; Names which start with 'form--' are intended for internal use, and | |
31 ;;; should *NOT* be used from the outside. | |
32 ;;; | |
33 ;;; All variables are buffer-local, to enable multiple forms visits | |
34 ;;; simultaneously. | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
35 ;;; Variable `forms--mode-setup' is local to *ALL* buffers, for it |
276 | 36 ;;; controls if forms-mode has been enabled in a buffer. |
37 ;;; | |
38 ;;; === How it works === | |
39 ;;; | |
40 ;;; Forms mode means visiting a data file which is supposed to consist | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
41 ;;; of records each containing a number of fields. The records are |
276 | 42 ;;; separated by a newline, the fields are separated by a user-defined |
43 ;;; field separater (default: TAB). | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
44 ;;; When shown, a record is transferred to an Emacs buffer and |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
45 ;;; presented using a user-defined form. One record is shown at a |
276 | 46 ;;; time. |
47 ;;; | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
48 ;;; Forms mode is a composite mode. It involves two files, and two |
276 | 49 ;;; buffers. |
50 ;;; The first file, called the control file, defines the name of the | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
51 ;;; data file and the forms format. This file buffer will be used to |
276 | 52 ;;; present the forms. |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
53 ;;; The second file holds the actual data. The buffer of this file |
276 | 54 ;;; will be buried, for it is never accessed directly. |
55 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
56 ;;; Forms mode is invoked using M-x forms-find-file control-file . |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
57 ;;; Alternativily `forms-find-file-other-window' can be used. |
276 | 58 ;;; |
59 ;;; You may also visit the control file, and switch to forms mode by hand | |
60 ;;; with M-x forms-mode . | |
61 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
62 ;;; Automatic mode switching is supported if you specify |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
63 ;;; "-*- forms -*-" in the first line of the control file. |
276 | 64 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
65 ;;; The control file is visited, evaluated using `eval-current-buffer', |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
66 ;;; and should set at least the following variables: |
276 | 67 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
68 ;;; forms-file [string] |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
69 ;;; The name of the data file. |
276 | 70 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
71 ;;; forms-number-of-fields [integer] |
276 | 72 ;;; The number of fields in each record. |
73 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
74 ;;; forms-format-list [list] |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
75 ;;; Formatting instructions. |
276 | 76 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
77 ;;; `forms-format-list' should be a list, each element containing |
276 | 78 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
79 ;;; - a string, e.g. "hello". The string is inserted in the forms |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
80 ;;; "as is". |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
81 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
82 ;;; - an integer, denoting a field number. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
83 ;;; The contents of this field are inserted at this point. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
84 ;;; Fields are numbered starting with number one. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
85 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
86 ;;; - a function call, e.g. (insert "text"). |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
87 ;;; This function call is dynamically evaluated and should return a |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
88 ;;; string. It should *NOT* have side-effects on the forms being |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
89 ;;; constructed. The current fields are available to the function |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
90 ;;; in the variable `forms-fields', they should *NOT* be modified. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
91 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
92 ;;; - a lisp symbol, that must evaluate to one of the above. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
93 ;;; |
276 | 94 ;;; Optional variables which may be set in the control file: |
95 ;;; | |
96 ;;; forms-field-sep [string, default TAB] | |
97 ;;; The field separator used to separate the | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
98 ;;; fields in the data file. It may be a string. |
276 | 99 ;;; |
100 ;;; forms-read-only [bool, default nil] | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
101 ;;; Non-nil means that the data file is visited |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
102 ;;; read-only (view mode) as opposed to edit mode. |
276 | 103 ;;; If no write access to the data file is |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
104 ;;; possible, view mode is enforced. |
276 | 105 ;;; |
106 ;;; forms-multi-line [string, default "^K"] | |
107 ;;; If non-null the records of the data file may | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
108 ;;; contain fields that can span multiple lines in |
276 | 109 ;;; the form. |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
110 ;;; This variable denotes the separator character |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
111 ;;; to be used for this purpose. Upon display, all |
276 | 112 ;;; occurrencies of this character are translated |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
113 ;;; to newlines. Upon storage they are translated |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
114 ;;; back to the separator character. |
276 | 115 ;;; |
116 ;;; forms-forms-scroll [bool, default t] | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
117 ;;; Non-nil means: rebind locally the commands that |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
118 ;;; perform `scroll-up' or `scroll-down' to use |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
119 ;;; `forms-next-field' resp. `forms-prev-field'. |
276 | 120 ;;; |
121 ;;; forms-forms-jump [bool, default t] | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
122 ;;; Non-nil means: rebind locally the commands that |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
123 ;;; perform `beginning-of-buffer' or `end-of-buffer' |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
124 ;;; to perform `forms-first-field' resp. `forms-last-field'. |
276 | 125 ;;; |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
126 ;;; forms-new-record-filter [symbol, no default] |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
127 ;;; If defined: this should be the name of a |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
128 ;;; function that is called when a new |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
129 ;;; record is created. It can be used to fill in |
276 | 130 ;;; the new record with default fields, for example. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
131 ;;; Instead of the name of the function, it may |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
132 ;;; be the function itself. |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
133 ;;; |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
134 ;;; forms-modified-record-filter [symbol, no default] |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
135 ;;; If defined: this should be the name of a |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
136 ;;; function that is called when a record has |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
137 ;;; been modified. It is called after the fields |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
138 ;;; are parsed. It can be used to register |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
139 ;;; modification dates, for example. |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
140 ;;; Instead of the name of the function, it may |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
141 ;;; be the function itself. |
276 | 142 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
143 ;;; forms-use-text-properties [bool, see text for default] |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
144 ;;; This variable controls if forms mode should use |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
145 ;;; text properties to protect the form text from being |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
146 ;;; modified (using text-property `read-only'). |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
147 ;;; Also, the read-write fields are shown using a |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
148 ;;; distinct face, if possible. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
149 ;;; This variable defaults to t if running Emacs 19 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
150 ;;; with text properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
151 ;;; The default face to show read-write fields is |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
152 ;;; copied from face `region'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
153 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
154 ;;; forms-ro-face [symbol, default 'default] |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
155 ;;; This is the face that is used to show |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
156 ;;; read-only text on the screen.If used, this |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
157 ;;; variable should be set to a symbol that is a |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
158 ;;; valid face. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
159 ;;; E.g. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
160 ;;; (make-face 'my-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
161 ;;; (setq forms-ro-face 'my-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
162 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
163 ;;; forms-rw-face [symbol, default 'region] |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
164 ;;; This is the face that is used to show |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
165 ;;; read-write text on the screen. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
166 ;;; |
276 | 167 ;;; After evaluating the control file, its buffer is cleared and used |
168 ;;; for further processing. | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
169 ;;; The data file (as designated by `forms-file') is visited in a buffer |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
170 ;;; `forms--file-buffer' which will not normally be shown. |
276 | 171 ;;; Great malfunctioning may be expected if this file/buffer is modified |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
172 ;;; outside of this package while it is being visited! |
276 | 173 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
174 ;;; Normal operation is to transfer one line (record) from the data file, |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
175 ;;; split it into fields (into `forms--the-record-list'), and display it |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
176 ;;; using the specs in `forms-format-list'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
177 ;;; A format routine `forms--format' is built upon startup to format |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
178 ;;; the records according to `forms-format-list'. |
276 | 179 ;;; |
180 ;;; When a form is changed the record is updated as soon as this form | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
181 ;;; is left. The contents of the form are parsed using information |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
182 ;;; obtained from `forms-format-list', and the fields which are |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
183 ;;; deduced from the form are modified. Fields not shown on the forms |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
184 ;;; retain their origional values. The newly formed record then |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
185 ;;; replaces the contents of the old record in `forms--file-buffer'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
186 ;;; A parse routine `forms--parser' is built upon startup to parse |
276 | 187 ;;; the records. |
188 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
189 ;;; Two exit functions exist: `forms-exit' and `forms-exit-no-save'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
190 ;;; `forms-exit' saves the data to the file, if modified. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
191 ;;; `forms-exit-no-save` does not. However, if `forms-exit-no-save' |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
192 ;;; is executed and the file buffer has been modified, Emacs will ask |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
193 ;;; questions anyway. |
276 | 194 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
195 ;;; Other functions provided by forms mode are: |
276 | 196 ;;; |
197 ;;; paging (forward, backward) by record | |
198 ;;; jumping (first, last, random number) | |
199 ;;; searching | |
200 ;;; creating and deleting records | |
201 ;;; reverting the form (NOT the file buffer) | |
202 ;;; switching edit <-> view mode v.v. | |
203 ;;; jumping from field to field | |
204 ;;; | |
205 ;;; As an documented side-effect: jumping to the last record in the | |
206 ;;; file (using forms-last-record) will adjust forms--total-records if | |
207 ;;; needed. | |
208 ;;; | |
209 ;;; Commands and keymaps: | |
210 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
211 ;;; A local keymap `forms-mode-map' is used in the forms buffer. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
212 ;;; If the forms is in view mode, this keymap is used so all forms mode |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
213 ;;; functions are accessible. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
214 ;;; If the forms is in edit mode, this map can be accessed with C-c prefix. |
276 | 215 ;;; |
216 ;;; Default bindings: | |
217 ;;; | |
218 ;;; \C-c forms-mode-map | |
219 ;;; TAB forms-next-field | |
220 ;;; SPC forms-next-record | |
221 ;;; < forms-first-record | |
222 ;;; > forms-last-record | |
223 ;;; ? describe-mode | |
224 ;;; d forms-delete-record | |
225 ;;; e forms-edit-mode | |
226 ;;; i forms-insert-record | |
227 ;;; j forms-jump-record | |
228 ;;; n forms-next-record | |
229 ;;; p forms-prev-record | |
230 ;;; q forms-exit | |
231 ;;; s forms-search | |
232 ;;; v forms-view-mode | |
233 ;;; x forms-exit-no-save | |
234 ;;; DEL forms-prev-record | |
235 ;;; | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
236 ;;; For convenience, TAB is always bound to `forms-next-field', so you |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
237 ;;; don't need the C-c prefix for this command. |
276 | 238 ;;; |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
239 ;;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump') |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
240 ;;; the bindings of standard functions `scroll-up', `scroll-down', |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
241 ;;; `beginning-of-buffer' and `end-of-buffer' are locally replaced with |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
242 ;;; forms mode functions next/prev record and first/last |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
243 ;;; record. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
244 ;;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
245 ;;; `local-write-file hook' is defined to save the actual data file |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
246 ;;; instead of the buffer data, `revert-file-hook' is defined to |
3827
4089cf0e3f06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
3697
diff
changeset
|
247 ;;; revert a forms to original. |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
248 |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
249 ;;; Code: |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
250 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
251 ;;; Global variables and constants: |
276 | 252 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
253 (provide 'forms) ;;; official |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
254 (provide 'forms-mode) ;;; for compatibility |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
255 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
256 (defconst forms-version "2.0" |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
257 "Version of forms-mode implementation.") |
276 | 258 |
259 (defvar forms-mode-hooks nil | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
260 "Hook functions to be run upon entering Forms mode.") |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
261 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
262 ;;; Mandatory variables - must be set by evaluating the control file. |
276 | 263 |
264 (defvar forms-file nil | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
265 "Name of the file holding the data.") |
276 | 266 |
267 (defvar forms-format-list nil | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
268 "List of formatting specifications.") |
276 | 269 |
270 (defvar forms-number-of-fields nil | |
271 "Number of fields per record.") | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
272 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
273 ;;; Optional variables with default values. |
276 | 274 |
275 (defvar forms-field-sep "\t" | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
276 "Field separator character (default TAB).") |
276 | 277 |
278 (defvar forms-read-only nil | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
279 "Non-nil means: visit the file in view (read-only) mode. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
280 (Defaults to the write access on the data file).") |
276 | 281 |
282 (defvar forms-multi-line "\C-k" | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
283 "If not nil: use this character to separate multi-line fields (default C-k).") |
276 | 284 |
285 (defvar forms-forms-scroll t | |
3828 | 286 "*Non-nil means replace scroll-up/down commands in Forms mode. |
287 The replacement commands performs forms-next/prev-record.") | |
276 | 288 |
289 (defvar forms-forms-jump t | |
3828 | 290 "*Non-nil means redefine beginning/end-of-buffer in Forms mode. |
291 The replacement commands performs forms-first/last-record.") | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
292 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
293 (defvar forms-new-record-filter nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
294 "The name of a function that is called when a new record is created.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
295 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
296 (defvar forms-modified-record-filter nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
297 "The name of a function that is called when a record has been modified.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
298 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
299 (defvar forms-fields nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
300 "List with fields of the current forms. First field has number 1. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
301 This variable is for use by the filter routines only. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
302 The contents may NOT be modified.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
303 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
304 (defvar forms-use-text-properties (fboundp 'set-text-properties) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
305 "*Non-nil means: use emacs-19 text properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
306 Defaults to t if this emacs is capable of handling text properties.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
307 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
308 (defvar forms-ro-face 'default |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
309 "The face (a symbol) that is used to display read-only text on the screen.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
310 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
311 (defvar forms-rw-face 'region |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
312 "The face (a symbol) that is used to display read-write text on the screen.") |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
313 |
276 | 314 ;;; Internal variables. |
315 | |
316 (defvar forms--file-buffer nil | |
317 "Buffer which holds the file data") | |
318 | |
319 (defvar forms--total-records 0 | |
320 "Total number of records in the data file.") | |
321 | |
322 (defvar forms--current-record 0 | |
323 "Number of the record currently on the screen.") | |
324 | |
325 (defvar forms-mode-map nil ; yes - this one is global | |
326 "Keymap for form buffer.") | |
327 | |
328 (defvar forms--markers nil | |
329 "Field markers in the screen.") | |
330 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
331 (defvar forms--dyntexts nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
332 "Dynamic texts (resulting from function calls) on the screen.") |
276 | 333 |
334 (defvar forms--the-record-list nil | |
335 "List of strings of the current record, as parsed from the file.") | |
336 | |
337 (defvar forms--search-regexp nil | |
338 "Last regexp used by forms-search.") | |
339 | |
340 (defvar forms--format nil | |
341 "Formatting routine.") | |
342 | |
343 (defvar forms--parser nil | |
344 "Forms parser routine.") | |
345 | |
346 (defvar forms--mode-setup nil | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
347 "To keep track of forms-mode being set-up.") |
276 | 348 (make-variable-buffer-local 'forms--mode-setup) |
349 | |
350 (defvar forms--new-record-filter nil | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
351 "Set if a new record filter has been defined.") |
276 | 352 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
353 (defvar forms--modified-record-filter nil |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
354 "Set if a modified record filter has been defined.") |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
355 |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
356 (defvar forms--dynamic-text nil |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
357 "Array that holds dynamic texts to insert between fields.") |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
358 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
359 (defvar forms--elements nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
360 "Array with the order in which the fields are displayed.") |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
361 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
362 (defvar forms--ro-face nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
363 "Face used to represent read-only data on the screen.") |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
364 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
365 (defvar forms--rw-face nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
366 "Face used to represent read-write data on the screen.") |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
367 |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
368 ;;;###autoload |
276 | 369 (defun forms-mode (&optional primary) |
370 "Major mode to visit files in a field-structured manner using a form. | |
371 | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
372 Commands (prefix with C-c if not in read-only mode): |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
373 \\{forms-mode-map}" |
276 | 374 |
375 (interactive) ; no - 'primary' is not prefix arg | |
376 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
377 ;; This is not a simple major mode, as usual. Therefore, forms-mode |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
378 ;; takes an optional argument `primary' which is used for the |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
379 ;; initial set-up. Normal use would leave `primary' to nil. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
380 ;; A global buffer-local variable `forms--mode-setup' has the same |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
381 ;; effect but makes it possible to auto-invoke forms-mode using |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
382 ;; `find-file'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
383 ;; Note: although it seems logical to have `make-local-variable' |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
384 ;; executed where the variable is first needed, I have deliberately |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
385 ;; placed all calls in this function. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
386 |
276 | 387 ;; Primary set-up: evaluate buffer and check if the mandatory |
388 ;; variables have been set. | |
389 (if (or primary (not forms--mode-setup)) | |
390 (progn | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
391 ;;(message "forms: setting up...") |
276 | 392 (kill-all-local-variables) |
393 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
394 ;; Make mandatory variables. |
276 | 395 (make-local-variable 'forms-file) |
396 (make-local-variable 'forms-number-of-fields) | |
397 (make-local-variable 'forms-format-list) | |
398 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
399 ;; Make optional variables. |
276 | 400 (make-local-variable 'forms-field-sep) |
401 (make-local-variable 'forms-read-only) | |
402 (make-local-variable 'forms-multi-line) | |
403 (make-local-variable 'forms-forms-scroll) | |
404 (make-local-variable 'forms-forms-jump) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
405 (make-local-variable 'forms-use-text-properties) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
406 (make-local-variable 'forms--new-record-filter) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
407 (make-local-variable 'forms--modified-record-filter) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
408 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
409 ;; Make sure no filters exist. |
276 | 410 (fmakunbound 'forms-new-record-filter) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
411 (fmakunbound 'forms-modified-record-filter) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
412 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
413 ;; If running Emacs 19 under X, setup faces to show read-only and |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
414 ;; read-write fields. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
415 (if (fboundp 'make-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
416 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
417 (make-local-variable 'forms-ro-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
418 (make-local-variable 'forms-rw-face))) |
276 | 419 |
420 ;; eval the buffer, should set variables | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
421 ;;(message "forms: processing control file...") |
276 | 422 (eval-current-buffer) |
423 | |
424 ;; check if the mandatory variables make sense. | |
425 (or forms-file | |
426 (error "'forms-file' has not been set")) | |
427 (or forms-number-of-fields | |
428 (error "'forms-number-of-fields' has not been set")) | |
429 (or (> forms-number-of-fields 0) | |
430 (error "'forms-number-of-fields' must be > 0") | |
431 (or (stringp forms-field-sep)) | |
432 (error "'forms-field-sep' is not a string")) | |
433 (if forms-multi-line | |
434 (if (and (stringp forms-multi-line) | |
435 (eq (length forms-multi-line) 1)) | |
436 (if (string= forms-multi-line forms-field-sep) | |
437 (error "'forms-multi-line' is equal to 'forms-field-sep'")) | |
438 (error "'forms-multi-line' must be nil or a one-character string"))) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
439 (or (fboundp 'set-text-properties) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
440 (setq forms-use-text-properties nil)) |
276 | 441 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
442 ;; Validate and process forms-format-list. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
443 ;;(message "forms: pre-processing format list...") |
276 | 444 (forms--process-format-list) |
445 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
446 ;; Build the formatter and parser. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
447 ;;(message "forms: building formatter...") |
276 | 448 (make-local-variable 'forms--format) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
449 (make-local-variable 'forms--markers) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
450 (make-local-variable 'forms--dyntexts) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
451 (make-local-variable 'forms--elements) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
452 ;;(message "forms: building parser...") |
276 | 453 (forms--make-format) |
454 (make-local-variable 'forms--parser) | |
455 (forms--make-parser) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
456 ;;(message "forms: building parser... done.") |
276 | 457 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
458 ;; Check if record filters are defined. |
276 | 459 (setq forms--new-record-filter |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
460 (cond |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
461 ((fboundp 'forms-new-record-filter) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
462 (symbol-function 'forms-new-record-filter)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
463 ((and (boundp 'forms-new-record-filter) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
464 (fboundp forms-new-record-filter)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
465 forms-new-record-filter))) |
276 | 466 (fmakunbound 'forms-new-record-filter) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
467 (setq forms--modified-record-filter |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
468 (cond |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
469 ((fboundp 'forms-modified-record-filter) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
470 (symbol-function 'forms-modified-record-filter)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
471 ((and (boundp 'forms-modified-record-filter) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
472 (fboundp forms-modified-record-filter)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
473 forms-modified-record-filter))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
474 (fmakunbound 'forms-modified-record-filter) |
276 | 475 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
476 ;; The filters acces the contents of the forms using `forms-fields'. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
477 (make-local-variable 'forms-fields) |
276 | 478 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
479 ;; Dynamic text support. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
480 (make-local-variable 'forms--dynamic-text) |
276 | 481 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
482 ;; Prevent accidental overwrite of the control file and autosave. |
276 | 483 (setq buffer-file-name nil) |
484 (auto-save-mode nil) | |
485 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
486 ;; Prepare this buffer for further processing. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
487 (setq buffer-read-only nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
488 (erase-buffer) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
489 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
490 ;;(message "forms: setting up... done.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
491 )) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
492 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
493 ;; Copy desired faces to the actual variables used by the forms formatter. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
494 (if (fboundp 'make-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
495 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
496 (make-local-variable 'forms--ro-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
497 (make-local-variable 'forms--rw-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
498 (if forms-read-only |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
499 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
500 (setq forms--ro-face forms-ro-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
501 (setq forms--rw-face forms-ro-face)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
502 (setq forms--ro-face forms-ro-face) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
503 (setq forms--rw-face forms-rw-face)))) |
276 | 504 |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
505 ;; Make more local variables. |
276 | 506 (make-local-variable 'forms--file-buffer) |
507 (make-local-variable 'forms--total-records) | |
508 (make-local-variable 'forms--current-record) | |
509 (make-local-variable 'forms--the-record-list) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
510 (make-local-variable 'forms--search-regexp) |
276 | 511 |
512 ;; A bug in the current Emacs release prevents a keymap | |
513 ;; which is buffer-local from being used by 'describe-mode'. | |
514 ;; Hence we'll leave it global. | |
515 ;;(make-local-variable 'forms-mode-map) | |
516 (if forms-mode-map ; already defined | |
517 nil | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
518 ;;(message "forms: building keymap...") |
276 | 519 (setq forms-mode-map (make-keymap)) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
520 (forms--mode-commands forms-mode-map) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
521 ;;(message "forms: building keymap... done.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
522 ) |
276 | 523 |
524 ;; find the data file | |
525 (setq forms--file-buffer (find-file-noselect forms-file)) | |
526 | |
527 ;; count the number of records, and set see if it may be modified | |
528 (let (ro) | |
529 (setq forms--total-records | |
530 (save-excursion | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
531 (prog1 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
532 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
533 ;;(message "forms: counting records...") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
534 (set-buffer forms--file-buffer) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
535 (bury-buffer (current-buffer)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
536 (setq ro buffer-read-only) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
537 (count-lines (point-min) (point-max))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
538 ;;(message "forms: counting records... done.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
539 ))) |
276 | 540 (if ro |
541 (setq forms-read-only t))) | |
542 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
543 ;;(message "forms: proceeding setup...") |
276 | 544 ;; set the major mode indicator |
545 (setq major-mode 'forms-mode) | |
546 (setq mode-name "Forms") | |
547 (make-local-variable 'minor-mode-alist) ; needed? | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
548 ;;(message "forms: proceeding setup (minor mode)...") |
276 | 549 (forms--set-minor-mode) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
550 ;;(message "forms: proceeding setup (keymaps)...") |
276 | 551 (forms--set-keymaps) |
3827
4089cf0e3f06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
3697
diff
changeset
|
552 (make-local-variable 'local-write-file-hooks) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
553 ;;(message "forms: proceeding setup (commands)...") |
3827
4089cf0e3f06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
3697
diff
changeset
|
554 (forms--change-commands) |
276 | 555 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
556 ;;(message "forms: proceeding setup (buffer)...") |
276 | 557 (set-buffer-modified-p nil) |
558 | |
559 ;; We have our own revert function - use it | |
560 (make-local-variable 'revert-buffer-function) | |
561 (setq revert-buffer-function 'forms-revert-buffer) | |
562 | |
563 ;; setup the first (or current) record to show | |
564 (if (< forms--current-record 1) | |
565 (setq forms--current-record 1)) | |
566 (forms-jump-record forms--current-record) | |
567 | |
568 ;; user customising | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
569 ;;(message "forms: proceeding setup (user hooks)...") |
276 | 570 (run-hooks 'forms-mode-hooks) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
571 ;;(message "forms: setting up... done.") |
276 | 572 |
573 ;; be helpful | |
574 (forms--help) | |
575 | |
576 ;; initialization done | |
577 (setq forms--mode-setup t)) | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
578 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
579 (defun forms--process-format-list () |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
580 ;; Validate `forms-format-list' and set some global variables. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
581 ;; Symbols in the list are evaluated, and consecutive strings are |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
582 ;; concatenated. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
583 ;; Array `forms--elements' is constructed that contains the order |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
584 ;; of the fields on the display. This array is used by |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
585 ;; `forms--parser-using-text-properties' to extract the fields data |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
586 ;; from the form on the screen. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
587 ;; Upon completion, `forms-format-list' is garanteed correct, so |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
588 ;; `forms--make-format' and `forms--make-parser' do not need to perform |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
589 ;; any checks. |
276 | 590 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
591 ;; Verify that `forms-format-list' is not nil. |
276 | 592 (or forms-format-list |
593 (error "'forms-format-list' has not been set")) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
594 ;; It must be a list. |
276 | 595 (or (listp forms-format-list) |
596 (error "'forms-format-list' is not a list")) | |
597 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
598 ;; Assume every field is painted once. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
599 ;; `forms--elements' will grow if needed. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
600 (setq forms--elements (make-vector forms-number-of-fields nil)) |
276 | 601 |
602 (let ((the-list forms-format-list) ; the list of format elements | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
603 (this-item 0) ; element in list |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
604 (prev-item nil) |
276 | 605 (field-num 0)) ; highest field number |
606 | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
607 (setq forms-format-list nil) ; gonna rebuild |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
608 |
276 | 609 (while the-list |
610 | |
611 (let ((el (car-safe the-list)) | |
612 (rem (cdr-safe the-list))) | |
613 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
614 ;; If it is a symbol, eval it first. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
615 (if (and (symbolp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
616 (boundp el)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
617 (setq el (eval el))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
618 |
276 | 619 (cond |
620 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
621 ;; Try string ... |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
622 ((stringp el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
623 (if (stringp prev-item) ; try to concatenate strings |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
624 (setq prev-item (concat prev-item el)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
625 (if prev-item |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
626 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
627 (append forms-format-list (list prev-item) nil))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
628 (setq prev-item el))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
629 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
630 ;; Try numeric ... |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
631 ((numberp el) |
276 | 632 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
633 ;; Validate range. |
276 | 634 (if (or (<= el 0) |
635 (> el forms-number-of-fields)) | |
636 (error | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
637 "Forms error: field number %d out of range 1..%d" |
276 | 638 el forms-number-of-fields)) |
639 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
640 ;; Store forms order. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
641 (if (> field-num (length forms--elements)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
642 (setq forms--elements (vconcat forms--elements (1- el))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
643 (aset forms--elements field-num (1- el))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
644 (setq field-num (1+ field-num)) |
276 | 645 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
646 ;; Make sure the field is preceded by something. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
647 (if prev-item |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
648 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
649 (append forms-format-list (list prev-item) nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
650 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
651 (append forms-format-list (list "\n") nil))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
652 (setq prev-item el)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
653 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
654 ;; Try function ... |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
655 ((listp el) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
656 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
657 ;; Validate. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
658 (or (fboundp (car-safe el)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
659 (error |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
660 "Forms error: not a function: %s" |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
661 (prin1-to-string (car-safe el)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
662 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
663 ;; Shift. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
664 (if prev-item |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
665 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
666 (append forms-format-list (list prev-item) nil))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
667 (setq prev-item el)) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
668 |
276 | 669 ;; else |
670 (t | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
671 (error "Forms error: invalid element %s" |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
672 (prin1-to-string el)))) |
276 | 673 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
674 ;; Advance to next element of the list. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
675 (setq the-list rem))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
676 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
677 ;; Append last item. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
678 (if prev-item |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
679 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
680 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
681 (append forms-format-list (list prev-item) nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
682 ;; Append a newline if the last item is a field. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
683 ;; This prevents pasrsing problems. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
684 ;; Also it makes it possible to insert an empty last field. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
685 (if (numberp prev-item) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
686 (setq forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
687 (append forms-format-list (list "\n") nil)))))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
688 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
689 (forms--debug 'forms-format-list |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
690 'forms--elements)) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
691 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
692 ;; Special treatment for read-only segments. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
693 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
694 ;; If text is inserted after a read-only segment, it inherits the |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
695 ;; read-only properties. This is not what we want. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
696 ;; The modification hook of the last character of the read-only segment |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
697 ;; temporarily switches its properties to read-write, so the new |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
698 ;; text gets the right properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
699 ;; The post-command-hook is used to restore the original properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
700 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
701 ;; A character category `forms-electric' is used for the characters |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
702 ;; that get the modification hook set. Using a category, it is |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
703 ;; possible to globally enable/disable the modification hook. This is |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
704 ;; necessary, since modifying a hook or setting text properties are |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
705 ;; considered modifications and would trigger the hooks while building |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
706 ;; the forms. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
707 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
708 (defvar forms--ro-modification-start nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
709 "Record start of modification command.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
710 (defvar forms--ro-properties nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
711 "Original properties of the character being overridden.") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
712 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
713 (defun forms--romh (begin end) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
714 "`modification-hook' function for forms-electric characters." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
715 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
716 ;; Note start location. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
717 (or forms--ro-modification-start |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
718 (setq forms--ro-modification-start (point))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
719 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
720 ;; Fetch current properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
721 (setq forms--ro-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
722 (text-properties-at (1- forms--ro-modification-start))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
723 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
724 ;; Disarm modification hook. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
725 (setplist 'forms--electric nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
726 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
727 ;; Replace them. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
728 (let ((inhibit-read-only t)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
729 (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
730 (1- forms--ro-modification-start) forms--ro-modification-start |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
731 (list 'face forms--rw-face))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
732 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
733 ;; Re-arm electric. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
734 (setplist 'forms--electric '(modification-hooks (forms--romh))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
735 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
736 ;; Enable `post-command-hook' to restore the properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
737 (setq post-command-hook |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
738 (append (list 'forms--romh-post-command-hook) post-command-hook))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
739 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
740 (defun forms--romh-post-command-hook () |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
741 "`post-command-hook' function for forms--electric characters." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
742 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
743 ;; Disable `post-command-hook'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
744 (setq post-command-hook |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
745 (delq 'forms--romh-post-command-hook post-command-hook)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
746 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
747 ;; Disarm modification hook. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
748 (setplist 'forms--electric nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
749 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
750 ;; Restore properties. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
751 (if forms--ro-modification-start |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
752 (let ((inhibit-read-only t)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
753 (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
754 (1- forms--ro-modification-start) forms--ro-modification-start |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
755 forms--ro-properties))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
756 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
757 ;; Re-arm electric. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
758 (setplist 'forms--electric '(modification-hooks (forms--romh))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
759 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
760 ;; Cleanup. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
761 (setq forms--ro-modification-start nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
762 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
763 (defvar forms--marker) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
764 (defvar forms--dyntext) |
276 | 765 |
766 (defun forms--make-format () | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
767 "Generate `forms--format' using the information in `forms-format-list'." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
768 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
769 ;; The real work is done using a mapcar of `forms--make-format-elt' on |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
770 ;; `forms-format-list'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
771 ;; This function sets up the necessary environment, and decides |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
772 ;; which function to mapcar. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
773 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
774 (let ((forms--marker 0) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
775 (forms--dyntext 0)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
776 (setq |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
777 forms--format |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
778 (if forms-use-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
779 (` (lambda (arg) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
780 (let ((inhibit-read-only t)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
781 (setplist 'forms--electric nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
782 (,@ (apply 'append |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
783 (mapcar 'forms--make-format-elt-using-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
784 forms-format-list)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
785 (setplist 'forms--electric |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
786 '(modification-hooks (forms--romh))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
787 (setq forms--ro-modification-start nil))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
788 (` (lambda (arg) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
789 (,@ (apply 'append |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
790 (mapcar 'forms--make-format-elt forms-format-list))))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
791 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
792 ;; We have tallied the number of markers and dynamic texts, |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
793 ;; so we can allocate the arrays now. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
794 (setq forms--markers (make-vector forms--marker nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
795 (setq forms--dyntexts (make-vector forms--dyntext nil))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
796 (forms--debug 'forms--format)) |
276 | 797 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
798 (defun forms--make-format-elt-using-text-properties (el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
799 "Helper routine to generate format function." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
800 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
801 ;; The format routine `forms--format' will look like |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
802 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
803 ;; ;; preamble |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
804 ;; (lambda (arg) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
805 ;; (let ((inhibit-read-only t)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
806 ;; (setplist 'forms--electric nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
807 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
808 ;; ;; a string, e.g. "text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
809 ;; (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
810 ;; (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
811 ;; (progn (insert "text: ") (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
812 ;; (list 'face forms--ro-face 'read-only 1)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
813 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
814 ;; ;; a field, e.g. 6 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
815 ;; (let ((here (point))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
816 ;; (aset forms--markers 0 (point-marker)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
817 ;; (insert (elt arg 5)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
818 ;; (or (= (point) here) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
819 ;; (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
820 ;; here (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
821 ;; (list 'face forms--rw-face))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
822 ;; (if (get-text-property (1- here) 'read-only) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
823 ;; (put-text-property |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
824 ;; (1- here) here |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
825 ;; 'category 'forms--electric))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
826 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
827 ;; ;; another string, e.g. "\nmore text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
828 ;; (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
829 ;; (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
830 ;; (progn (insert "\nmore text: ") (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
831 ;; (list 'face forms--ro-face |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
832 ;; 'read-only 2)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
833 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
834 ;; ;; a function, e.g. (tocol 40) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
835 ;; (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
836 ;; (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
837 ;; (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
838 ;; (insert (aset forms--dyntexts 0 (tocol 40))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
839 ;; (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
840 ;; (list 'face forms--ro-face |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
841 ;; 'read-only 2)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
842 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
843 ;; ;; wrap up |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
844 ;; (setplist 'forms--electric |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
845 ;; '(modification-hooks (forms--romh))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
846 ;; (setq forms--ro-modification-start nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
847 ;; )) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
848 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
849 (cond |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
850 ((stringp el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
851 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
852 (` ((set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
853 (point) ; start at point |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
854 (progn ; until after insertion |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
855 (insert (, el)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
856 (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
857 (list 'face forms--ro-face ; read-only appearance |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
858 'read-only (,@ (list (1+ forms--marker)))))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
859 ((numberp el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
860 (` ((let ((here (point))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
861 (aset forms--markers |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
862 (, (prog1 forms--marker |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
863 (setq forms--marker (1+ forms--marker)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
864 (point-marker)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
865 (insert (elt arg (, (1- el)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
866 (or (= (point) here) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
867 (set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
868 here (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
869 (list 'face forms--rw-face))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
870 (if (get-text-property (1- here) 'read-only) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
871 (put-text-property |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
872 (1- here) here |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
873 'category 'forms--electric)))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
874 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
875 ((listp el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
876 (` ((set-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
877 (point) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
878 (progn |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
879 (insert (aset forms--dyntexts |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
880 (, (prog1 forms--dyntext |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
881 (setq forms--dyntext (1+ forms--dyntext)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
882 (, el))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
883 (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
884 (list 'face forms--ro-face |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
885 'read-only |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
886 (,@ (list (1+ forms--marker)))))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
887 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
888 ;; end of cond |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
889 )) |
276 | 890 |
891 (defun forms--make-format-elt (el) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
892 "Helper routine to generate format function." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
893 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
894 ;; If we're not using text properties, the format routine |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
895 ;; `forms--format' will look like |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
896 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
897 ;; (lambda (arg) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
898 ;; ;; a string, e.g. "text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
899 ;; (insert "text: ") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
900 ;; ;; a field, e.g. 6 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
901 ;; (aset forms--markers 0 (point-marker)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
902 ;; (insert (elt arg 5)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
903 ;; ;; another string, e.g. "\nmore text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
904 ;; (insert "\nmore text: ") |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
905 ;; ;; a function, e.g. (tocol 40) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
906 ;; (insert (aset forms--dyntexts 0 (tocol 40))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
907 ;; ... ) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
908 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
909 (cond |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
910 ((stringp el) |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
911 (` ((insert (, el))))) |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
912 ((numberp el) |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
913 (prog1 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
914 (` ((aset forms--markers (, forms--marker) (point-marker)) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
915 (insert (elt arg (, (1- el)))))) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
916 (setq forms--marker (1+ forms--marker)))) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
917 ((listp el) |
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
918 (prog1 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
919 (` ((insert (aset forms--dyntexts (, forms--dyntext) (, el))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
920 (setq forms--dyntext (1+ forms--dyntext)))))) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
921 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
922 (defvar forms--field) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
923 (defvar forms--recordv) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
924 (defvar forms--seen-text) |
276 | 925 |
926 (defun forms--make-parser () | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
927 "Generate `forms--parser' from the information in `forms-format-list'." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
928 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
929 ;; If we can use text properties, we simply set it to |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
930 ;; `forms--parser-using-text-properties'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
931 ;; Otherwise, the function is constructed using a mapcar of |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
932 ;; `forms--make-parser-elt on `forms-format-list'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
933 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
934 (setq |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
935 forms--parser |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
936 (if forms-use-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
937 (function forms--parser-using-text-properties) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
938 (let ((forms--field nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
939 (forms--seen-text nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
940 (forms--dyntext 0)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
941 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
942 ;; Note: we add a nil element to the list passed to `mapcar', |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
943 ;; see `forms--make-parser-elt' for details. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
944 (` (lambda nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
945 (let (here) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
946 (goto-char (point-min)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
947 (,@ (apply 'append |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
948 (mapcar |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
949 'forms--make-parser-elt |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
950 (append forms-format-list (list nil))))))))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
951 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
952 (forms--debug 'forms--parser)) |
276 | 953 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
954 (defun forms--parser-using-text-properties () |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
955 "Extract field info from forms when using text properties." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
956 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
957 ;; Using text properties, we can simply jump to the markers, and |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
958 ;; extract the information up to the following read-only segment. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
959 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
960 (let ((i 0) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
961 here there) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
962 (while (< i (length forms--markers)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
963 (goto-char (setq here (aref forms--markers i))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
964 (if (get-text-property here 'read-only) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
965 (aset forms--recordv (aref forms--elements i) nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
966 (if (setq there |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
967 (next-single-property-change here 'read-only)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
968 (aset forms--recordv (aref forms--elements i) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
969 (buffer-substring here there)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
970 (aset forms--recordv (aref forms--elements i) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
971 (buffer-substring here (point-max))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
972 (setq i (1+ i))))) |
276 | 973 |
974 (defun forms--make-parser-elt (el) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
975 "Helper routine to generate forms parser function." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
976 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
977 ;; The parse routine will look like: |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
978 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
979 ;; (lambda nil |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
980 ;; (let (here) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
981 ;; (goto-char (point-min)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
982 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
983 ;; ;; "text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
984 ;; (if (not (looking-at "text: ")) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
985 ;; (error "Parse error: cannot find \"text: \"")) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
986 ;; (forward-char 6) ; past "text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
987 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
988 ;; ;; 6 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
989 ;; ;; "\nmore text: " |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
990 ;; (setq here (point)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
991 ;; (if (not (search-forward "\nmore text: " nil t nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
992 ;; (error "Parse error: cannot find \"\\nmore text: \"")) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
993 ;; (aset forms--recordv 5 (buffer-substring here (- (point) 12))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
994 ;; |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
995 ;; ;; (tocol 40) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
996 ;; (let ((forms--dyntext (car-safe forms--dynamic-text))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
997 ;; (if (not (looking-at (regexp-quote forms--dyntext))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
998 ;; (error "Parse error: not looking at \"%s\"" forms--dyntext)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
999 ;; (forward-char (length forms--dyntext)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1000 ;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1001 ;; ... |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1002 ;; ;; final flush (due to terminator sentinel, see below) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1003 ;; (aset forms--recordv 7 (buffer-substring (point) (point-max))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1004 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1005 (cond |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1006 ((stringp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1007 (prog1 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1008 (if forms--field |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1009 (` ((setq here (point)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1010 (if (not (search-forward (, el) nil t nil)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1011 (error "Parse error: cannot find \"%s\"" (, el))) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1012 (aset forms--recordv (, (1- forms--field)) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1013 (buffer-substring here |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1014 (- (point) (, (length el))))))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1015 (` ((if (not (looking-at (, (regexp-quote el)))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1016 (error "Parse error: not looking at \"%s\"" (, el))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1017 (forward-char (, (length el)))))) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1018 (setq forms--seen-text t) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1019 (setq forms--field nil))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1020 ((numberp el) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1021 (if forms--field |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1022 (error "Cannot parse adjacent fields %d and %d" |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1023 forms--field el) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1024 (setq forms--field el) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1025 nil)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1026 ((null el) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1027 (if forms--field |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1028 (` ((aset forms--recordv (, (1- forms--field)) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1029 (buffer-substring (point) (point-max))))))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1030 ((listp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1031 (prog1 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1032 (if forms--field |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1033 (` ((let ((here (point)) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1034 (forms--dyntext (aref forms--dyntexts (, forms--dyntext)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1035 (if (not (search-forward forms--dyntext nil t nil)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1036 (error "Parse error: cannot find \"%s\"" forms--dyntext)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1037 (aset forms--recordv (, (1- forms--field)) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1038 (buffer-substring here |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1039 (- (point) (length forms--dyntext))))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1040 (` ((let ((forms--dyntext (aref forms--dyntexts (, forms--dyntext)))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1041 (if (not (looking-at (regexp-quote forms--dyntext))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1042 (error "Parse error: not looking at \"%s\"" forms--dyntext)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1043 (forward-char (length forms--dyntext)))))) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1044 (setq forms--dyntext (1+ forms--dyntext)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1045 (setq forms--seen-text t) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1046 (setq forms--field nil))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1047 )) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1048 |
276 | 1049 (defun forms--set-minor-mode () |
1050 (setq minor-mode-alist | |
1051 (if forms-read-only | |
1052 " View" | |
1053 nil))) | |
1054 | |
1055 (defun forms--set-keymaps () | |
1056 "Set the keymaps used in this mode." | |
1057 | |
1058 (if forms-read-only | |
1059 (use-local-map forms-mode-map) | |
1060 (use-local-map (make-sparse-keymap)) | |
1061 (define-key (current-local-map) "\C-c" forms-mode-map) | |
1062 (define-key (current-local-map) "\t" 'forms-next-field))) | |
1063 | |
1064 (defun forms--mode-commands (map) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1065 "Fill map with all Forms mode commands." |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1066 |
276 | 1067 (define-key map "\t" 'forms-next-field) |
1068 (define-key map " " 'forms-next-record) | |
1069 (define-key map "d" 'forms-delete-record) | |
1070 (define-key map "e" 'forms-edit-mode) | |
1071 (define-key map "i" 'forms-insert-record) | |
1072 (define-key map "j" 'forms-jump-record) | |
1073 (define-key map "n" 'forms-next-record) | |
1074 (define-key map "p" 'forms-prev-record) | |
1075 (define-key map "q" 'forms-exit) | |
1076 (define-key map "s" 'forms-search) | |
1077 (define-key map "v" 'forms-view-mode) | |
1078 (define-key map "x" 'forms-exit-no-save) | |
1079 (define-key map "<" 'forms-first-record) | |
1080 (define-key map ">" 'forms-last-record) | |
1081 (define-key map "?" 'describe-mode) | |
1082 (define-key map "\177" 'forms-prev-record) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1083 ;(define-key map "\C-c" map) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1084 ;(define-key map "\e" 'ESC-prefix) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1085 ;(define-key map "\C-x" ctl-x-map) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1086 ;(define-key map "\C-u" 'universal-argument) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1087 ;(define-key map "\C-h" help-map) |
276 | 1088 ) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1089 |
276 | 1090 ;;; Changed functions |
1091 | |
1092 (defun forms--change-commands () | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1093 "Localize some commands for Forms mode." |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1094 |
276 | 1095 ;; scroll-down -> forms-prev-record |
1096 ;; scroll-up -> forms-next-record | |
3828 | 1097 (if forms-forms-scroll |
1098 (progn | |
1099 (substitute-key-definition 'scroll-up 'forms-next-record | |
1100 (current-local-map) | |
1101 (current-global-map)) | |
1102 (substitute-key-definition 'scroll-down 'forms-prev-record | |
1103 (current-local-map) | |
1104 (current-global-map)))) | |
276 | 1105 ;; |
1106 ;; beginning-of-buffer -> forms-first-record | |
1107 ;; end-of-buffer -> forms-end-record | |
3828 | 1108 (if forms-forms-jump |
1109 (progn | |
1110 (substitute-key-definition 'beginning-of-buffer 'forms-first-record | |
1111 (current-local-map) | |
1112 (current-global-map)) | |
1113 (substitute-key-definition 'end-of-buffer 'forms-last-record | |
1114 (current-local-map) | |
1115 (current-global-map)))) | |
276 | 1116 ;; |
1117 ;; save-buffer -> forms--save-buffer | |
3828 | 1118 (add-hook 'local-write-file-hooks |
1119 (function | |
1120 (lambda (nil) | |
1121 (forms--checkmod) | |
1122 (save-excursion | |
1123 (set-buffer forms--file-buffer) | |
1124 (save-buffer)) | |
1125 t)))) | |
276 | 1126 |
1127 (defun forms--help () | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1128 "Initial help for Forms mode." |
276 | 1129 ;; We should use |
1130 ;;(message (substitute-command-keys (concat | |
1131 ;;"\\[forms-next-record]:next" | |
1132 ;;" \\[forms-prev-record]:prev" | |
1133 ;;" \\[forms-first-record]:first" | |
1134 ;;" \\[forms-last-record]:last" | |
1135 ;;" \\[describe-mode]:help" | |
1136 ;;" \\[forms-exit]:exit"))) | |
1137 ;; but it's too slow .... | |
1138 (if forms-read-only | |
1139 (message "SPC:next DEL:prev <:first >:last ?:help q:exit") | |
1140 (message "C-c n:next C-c p:prev C-c <:first C-c >:last C-c ?:help C-c q:exit"))) | |
1141 | |
1142 (defun forms--trans (subj arg rep) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1143 "Translate in SUBJ all chars ARG into char REP. ARG and REP should |
276 | 1144 be single-char strings." |
1145 (let ((i 0) | |
1146 (x (length subj)) | |
1147 (re (regexp-quote arg)) | |
1148 (k (string-to-char rep))) | |
1149 (while (setq i (string-match re subj i)) | |
1150 (aset subj i k) | |
1151 (setq i (1+ i))))) | |
1152 | |
1153 (defun forms--exit (query &optional save) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1154 "Internal exit from forms mode function." |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1155 |
276 | 1156 (let ((buf (buffer-name forms--file-buffer))) |
1157 (forms--checkmod) | |
1158 (if (and save | |
1159 (buffer-modified-p forms--file-buffer)) | |
1160 (save-excursion | |
1161 (set-buffer forms--file-buffer) | |
1162 (save-buffer))) | |
1163 (save-excursion | |
1164 (set-buffer forms--file-buffer) | |
1165 (delete-auto-save-file-if-necessary) | |
1166 (kill-buffer (current-buffer))) | |
1167 (if (get-buffer buf) ; not killed??? | |
1168 (if save | |
1169 (progn | |
1170 (beep) | |
1171 (message "Problem saving buffers?"))) | |
1172 (delete-auto-save-file-if-necessary) | |
1173 (kill-buffer (current-buffer))))) | |
1174 | |
1175 (defun forms--get-record () | |
1176 "Fetch the current record from the file buffer." | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1177 |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1178 ;; This function is executed in the context of the `forms--file-buffer'. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1179 |
276 | 1180 (or (bolp) |
1181 (beginning-of-line nil)) | |
1182 (let ((here (point))) | |
1183 (prog2 | |
1184 (end-of-line) | |
1185 (buffer-substring here (point)) | |
1186 (goto-char here)))) | |
1187 | |
1188 (defun forms--show-record (the-record) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1189 "Format THE-RECORD and display it in the current buffer." |
276 | 1190 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1191 ;; Split the-record. |
276 | 1192 (let (the-result |
1193 (start-pos 0) | |
1194 found-pos | |
1195 (field-sep-length (length forms-field-sep))) | |
1196 (if forms-multi-line | |
1197 (forms--trans the-record forms-multi-line "\n")) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1198 ;; Add an extra separator (makes splitting easy). |
276 | 1199 (setq the-record (concat the-record forms-field-sep)) |
1200 (while (setq found-pos (string-match forms-field-sep the-record start-pos)) | |
1201 (let ((ent (substring the-record start-pos found-pos))) | |
1202 (setq the-result | |
1203 (append the-result (list ent))) | |
1204 (setq start-pos (+ field-sep-length found-pos)))) | |
1205 (setq forms--the-record-list the-result)) | |
1206 | |
1207 (setq buffer-read-only nil) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1208 (if forms-use-text-properties |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1209 (let ((inhibit-read-only t)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1210 (setplist 'forms--electric nil) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1211 (set-text-properties (point-min) (point-max) nil))) |
276 | 1212 (erase-buffer) |
1213 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1214 ;; Verify the number of fields, extend forms--the-record-list if needed. |
276 | 1215 (if (= (length forms--the-record-list) forms-number-of-fields) |
1216 nil | |
1217 (beep) | |
1218 (message "Record has %d fields instead of %d." | |
1219 (length forms--the-record-list) forms-number-of-fields) | |
1220 (if (< (length forms--the-record-list) forms-number-of-fields) | |
1221 (setq forms--the-record-list | |
1222 (append forms--the-record-list | |
1223 (make-list | |
1224 (- forms-number-of-fields | |
1225 (length forms--the-record-list)) | |
1226 ""))))) | |
1227 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1228 ;; Call the formatter function. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1229 (setq forms-fields (append (list nil) forms--the-record-list nil)) |
276 | 1230 (funcall forms--format forms--the-record-list) |
1231 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1232 ;; Prepare. |
276 | 1233 (goto-char (point-min)) |
1234 (set-buffer-modified-p nil) | |
1235 (setq buffer-read-only forms-read-only) | |
1236 (setq mode-line-process | |
1237 (concat " " forms--current-record "/" forms--total-records))) | |
1238 | |
1239 (defun forms--parse-form () | |
1240 "Parse contents of form into list of strings." | |
1241 ;; The contents of the form are parsed, and a new list of strings | |
1242 ;; is constructed. | |
1243 ;; A vector with the strings from the original record is | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1244 ;; constructed, which is updated with the new contents. Therefore |
276 | 1245 ;; fields which were not in the form are not modified. |
1246 ;; Finally, the vector is transformed into a list for further processing. | |
1247 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1248 (let (forms--recordv) |
276 | 1249 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1250 ;; Build the vector. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1251 (setq forms--recordv (vconcat forms--the-record-list)) |
276 | 1252 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1253 ;; Parse the form and update the vector. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1254 (let ((forms--dynamic-text forms--dynamic-text)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1255 (funcall forms--parser)) |
276 | 1256 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1257 (if forms--modified-record-filter |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1258 ;; As a service to the user, we add a zeroth element so she |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1259 ;; can use the same indices as in the forms definition. |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1260 (let ((the-fields (vconcat [nil] forms--recordv))) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1261 (setq the-fields (funcall forms--modified-record-filter the-fields)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1262 (cdr (append the-fields nil))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1263 |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1264 ;; Transform to a list and return. |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1265 (append forms--recordv nil)))) |
276 | 1266 |
1267 (defun forms--update () | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1268 "Update current record with contents of form. |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1269 As a side effect: sets `forms--the-record-list'." |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1270 |
276 | 1271 (if forms-read-only |
1272 (progn | |
1273 (message "Read-only buffer!") | |
1274 (beep)) | |
1275 | |
1276 (let (the-record) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1277 ;; Build new record. |
276 | 1278 (setq forms--the-record-list (forms--parse-form)) |
1279 (setq the-record | |
1280 (mapconcat 'identity forms--the-record-list forms-field-sep)) | |
1281 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1282 ;; Handle multi-line fields, if allowed. |
276 | 1283 (if forms-multi-line |
1284 (forms--trans the-record "\n" forms-multi-line)) | |
1285 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1286 ;; A final sanity check before updating. |
276 | 1287 (if (string-match "\n" the-record) |
1288 (progn | |
1289 (message "Multi-line fields in this record - update refused!") | |
1290 (beep)) | |
1291 | |
1292 (save-excursion | |
1293 (set-buffer forms--file-buffer) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1294 ;; Insert something before kill-line is called. See kill-line |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1295 ;; doc. Bugfix provided by Ignatios Souvatzis. |
276 | 1296 (insert "*") |
1297 (beginning-of-line) | |
1298 (kill-line nil) | |
1299 (insert the-record) | |
1300 (beginning-of-line)))))) | |
1301 | |
1302 (defun forms--checkmod () | |
1303 "Check if this form has been modified, and call forms--update if so." | |
1304 (if (buffer-modified-p nil) | |
1305 (let ((here (point))) | |
1306 (forms--update) | |
1307 (set-buffer-modified-p nil) | |
1308 (goto-char here)))) | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1309 |
276 | 1310 ;;; Start and exit |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1311 |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1312 ;;;###autoload |
276 | 1313 (defun forms-find-file (fn) |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1314 "Visit a file in Forms mode." |
276 | 1315 (interactive "fForms file: ") |
1316 (find-file-read-only fn) | |
1317 (or forms--mode-setup (forms-mode t))) | |
1318 | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1319 ;;;###autoload |
276 | 1320 (defun forms-find-file-other-window (fn) |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1321 "Visit a file in Forms mode in other window." |
276 | 1322 (interactive "fFbrowse file in other window: ") |
1323 (find-file-other-window fn) | |
1324 (eval-current-buffer) | |
1325 (or forms--mode-setup (forms-mode t))) | |
1326 | |
1327 (defun forms-exit (query) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1328 "Normal exit from Forms mode. Modified buffers are saved." |
276 | 1329 (interactive "P") |
1330 (forms--exit query t)) | |
1331 | |
1332 (defun forms-exit-no-save (query) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1333 "Exit from Forms mode without saving buffers." |
276 | 1334 (interactive "P") |
1335 (forms--exit query nil)) | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1336 |
276 | 1337 ;;; Navigating commands |
1338 | |
1339 (defun forms-next-record (arg) | |
1340 "Advance to the ARGth following record." | |
1341 (interactive "P") | |
1342 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t)) | |
1343 | |
1344 (defun forms-prev-record (arg) | |
1345 "Advance to the ARGth previous record." | |
1346 (interactive "P") | |
1347 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t)) | |
1348 | |
1349 (defun forms-jump-record (arg &optional relative) | |
1350 "Jump to a random record." | |
1351 (interactive "NRecord number: ") | |
1352 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1353 ;; Verify that the record number is within range. |
276 | 1354 (if (or (> arg forms--total-records) |
1355 (<= arg 0)) | |
1356 (progn | |
1357 (beep) | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1358 ;; Don't give the message if just paging. |
276 | 1359 (if (not relative) |
1360 (message "Record number %d out of range 1..%d" | |
1361 arg forms--total-records)) | |
1362 ) | |
1363 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1364 ;; Flush. |
276 | 1365 (forms--checkmod) |
1366 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1367 ;; Calculate displacement. |
276 | 1368 (let ((disp (- arg forms--current-record)) |
1369 (cur forms--current-record)) | |
1370 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1371 ;; `forms--show-record' needs it now. |
276 | 1372 (setq forms--current-record arg) |
1373 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1374 ;; Get the record and show it. |
276 | 1375 (forms--show-record |
1376 (save-excursion | |
1377 (set-buffer forms--file-buffer) | |
1378 (beginning-of-line) | |
1379 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1380 ;; Move, and adjust the amount if needed (shouldn't happen). |
276 | 1381 (if relative |
1382 (if (zerop disp) | |
1383 nil | |
1384 (setq cur (+ cur disp (- (forward-line disp))))) | |
1385 (setq cur (+ cur disp (- (goto-line arg))))) | |
1386 | |
1387 (forms--get-record))) | |
1388 | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1389 ;; This shouldn't happen. |
276 | 1390 (if (/= forms--current-record cur) |
1391 (progn | |
1392 (setq forms--current-record cur) | |
1393 (beep) | |
1394 (message "Stuck at record %d." cur)))))) | |
1395 | |
1396 (defun forms-first-record () | |
1397 "Jump to first record." | |
1398 (interactive) | |
1399 (forms-jump-record 1)) | |
1400 | |
1401 (defun forms-last-record () | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1402 "Jump to last record. |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1403 As a side effect: re-calculates the number of records in the data file." |
276 | 1404 (interactive) |
1405 (let | |
1406 ((numrec | |
1407 (save-excursion | |
1408 (set-buffer forms--file-buffer) | |
1409 (count-lines (point-min) (point-max))))) | |
1410 (if (= numrec forms--total-records) | |
1411 nil | |
1412 (beep) | |
1413 (setq forms--total-records numrec) | |
1414 (message "Number of records reset to %d." forms--total-records))) | |
1415 (forms-jump-record forms--total-records)) | |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1416 |
276 | 1417 ;;; Other commands |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1418 |
276 | 1419 (defun forms-view-mode () |
1420 "Visit buffer read-only." | |
1421 (interactive) | |
1422 (if forms-read-only | |
1423 nil | |
1424 (forms--checkmod) ; sync | |
1425 (setq forms-read-only t) | |
1426 (forms-mode))) | |
1427 | |
1428 (defun forms-edit-mode () | |
1429 "Make form suitable for editing, if possible." | |
1430 (interactive) | |
1431 (let ((ro forms-read-only)) | |
1432 (if (save-excursion | |
1433 (set-buffer forms--file-buffer) | |
1434 buffer-read-only) | |
1435 (progn | |
1436 (setq forms-read-only t) | |
1437 (message "No write access to \"%s\"" forms-file) | |
1438 (beep)) | |
1439 (setq forms-read-only nil)) | |
1440 (if (equal ro forms-read-only) | |
1441 nil | |
1442 (forms-mode)))) | |
1443 | |
1444 ;; Sample: | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1445 ;; (defun my-new-record-filter (the-fields) |
276 | 1446 ;; ;; numbers are relative to 1 |
1447 ;; (aset the-fields 4 (current-time-string)) | |
1448 ;; (aset the-fields 6 (user-login-name)) | |
1449 ;; the-list) | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1450 ;; (setq forms-new-record-filter 'my-new-record-filter) |
276 | 1451 |
1452 (defun forms-insert-record (arg) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1453 "Create a new record before the current one. |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1454 With ARG: store the record after the current one. |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1455 If a function `forms-new-record-filter' is defined, or |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1456 `forms-new-record-filter' contains the name of a function, |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1457 it is called to fill (some of) the fields with default values." |
276 | 1458 ; The above doc is not true, but for documentary purposes only |
1459 | |
1460 (interactive "P") | |
1461 | |
1462 (let ((ln (if arg (1+ forms--current-record) forms--current-record)) | |
1463 the-list the-record) | |
1464 | |
1465 (forms--checkmod) | |
1466 (if forms--new-record-filter | |
1467 ;; As a service to the user, we add a zeroth element so she | |
1468 ;; can use the same indices as in the forms definition. | |
1469 (let ((the-fields (make-vector (1+ forms-number-of-fields) ""))) | |
1470 (setq the-fields (funcall forms--new-record-filter the-fields)) | |
1471 (setq the-list (cdr (append the-fields nil)))) | |
1472 (setq the-list (make-list forms-number-of-fields ""))) | |
1473 | |
1474 (setq the-record | |
1475 (mapconcat | |
1476 'identity | |
1477 the-list | |
1478 forms-field-sep)) | |
1479 | |
1480 (save-excursion | |
1481 (set-buffer forms--file-buffer) | |
1482 (goto-line ln) | |
1483 (open-line 1) | |
1484 (insert the-record) | |
1485 (beginning-of-line)) | |
1486 | |
1487 (setq forms--current-record ln)) | |
1488 | |
1489 (setq forms--total-records (1+ forms--total-records)) | |
1490 (forms-jump-record forms--current-record)) | |
1491 | |
1492 (defun forms-delete-record (arg) | |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1493 "Deletes a record. With a prefix argument: don't ask." |
276 | 1494 (interactive "P") |
1495 (forms--checkmod) | |
1496 (if (or arg | |
1497 (y-or-n-p "Really delete this record? ")) | |
1498 (let ((ln forms--current-record)) | |
1499 (save-excursion | |
1500 (set-buffer forms--file-buffer) | |
1501 (goto-line ln) | |
1502 (kill-line 1)) | |
1503 (setq forms--total-records (1- forms--total-records)) | |
1504 (if (> forms--current-record forms--total-records) | |
1505 (setq forms--current-record forms--total-records)) | |
1506 (forms-jump-record forms--current-record))) | |
1507 (message "")) | |
1508 | |
1509 (defun forms-search (regexp) | |
1510 "Search REGEXP in file buffer." | |
1511 (interactive | |
1512 (list (read-string (concat "Search for" | |
1513 (if forms--search-regexp | |
1514 (concat " (" | |
1515 forms--search-regexp | |
1516 ")")) | |
1517 ": ")))) | |
1518 (if (equal "" regexp) | |
1519 (setq regexp forms--search-regexp)) | |
1520 (forms--checkmod) | |
1521 | |
1522 (let (the-line the-record here | |
1523 (fld-sep forms-field-sep)) | |
1524 (if (save-excursion | |
1525 (set-buffer forms--file-buffer) | |
1526 (setq here (point)) | |
1527 (end-of-line) | |
1528 (if (null (re-search-forward regexp nil t)) | |
1529 (progn | |
1530 (goto-char here) | |
1531 (message (concat "\"" regexp "\" not found.")) | |
1532 nil) | |
1533 (setq the-record (forms--get-record)) | |
1534 (setq the-line (1+ (count-lines (point-min) (point)))))) | |
1535 (progn | |
1536 (setq forms--current-record the-line) | |
1537 (forms--show-record the-record) | |
1538 (re-search-forward regexp nil t)))) | |
1539 (setq forms--search-regexp regexp)) | |
1540 | |
1541 (defun forms-revert-buffer (&optional arg noconfirm) | |
1542 "Reverts current form to un-modified." | |
1543 (interactive "P") | |
1544 (if (or noconfirm | |
1545 (yes-or-no-p "Revert form to unmodified? ")) | |
1546 (progn | |
1547 (set-buffer-modified-p nil) | |
1548 (forms-jump-record forms--current-record)))) | |
1549 | |
1550 (defun forms-next-field (arg) | |
1551 "Jump to ARG-th next field." | |
1552 (interactive "p") | |
1553 | |
1554 (let ((i 0) | |
1555 (here (point)) | |
1556 there | |
1557 (cnt 0)) | |
1558 | |
1559 (if (zerop arg) | |
1560 (setq cnt 1) | |
1561 (setq cnt (+ cnt arg))) | |
1562 | |
1563 (if (catch 'done | |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1564 (while (< i (length forms--markers)) |
276 | 1565 (if (or (null (setq there (aref forms--markers i))) |
1566 (<= there here)) | |
1567 nil | |
1568 (if (<= (setq cnt (1- cnt)) 0) | |
1569 (progn | |
1570 (goto-char there) | |
1571 (throw 'done t)))) | |
1572 (setq i (1+ i)))) | |
1573 nil | |
1574 (goto-char (aref forms--markers 0))))) | |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1575 |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1576 ;;; |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1577 ;;; Special service |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1578 ;;; |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1579 (defun forms-enumerate (the-fields) |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1580 "Take a quoted list of symbols, and set their values to sequential numbers. |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1581 The first symbol gets number 1, the second 2 and so on. |
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1582 It returns the higest number. |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1583 |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1584 Usage: (setq forms-number-of-fields |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1585 (forms-enumerate |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1586 '(field1 field2 field2 ...)))" |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1587 |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1588 (let ((the-index 0)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1589 (while the-fields |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1590 (setq the-index (1+ the-index)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1591 (let ((el (car-safe the-fields))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1592 (setq the-fields (cdr-safe the-fields)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1593 (set el the-index))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1594 the-index)) |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1595 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1596 ;;; Debugging |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1597 |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1598 (defvar forms--debug nil |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1599 "*Enables forms-mode debugging if not nil.") |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1600 |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1601 (defun forms--debug (&rest args) |
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1602 "Internal debugging routine." |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1603 (if forms--debug |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1604 (let ((ret nil)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1605 (while args |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1606 (let ((el (car-safe args))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1607 (setq args (cdr-safe args)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1608 (if (stringp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1609 (setq ret (concat ret el)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1610 (setq ret (concat ret (prin1-to-string el) " = ")) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1611 (if (boundp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1612 (let ((vel (eval el))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1613 (setq ret (concat ret (prin1-to-string vel) "\n"))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1614 (setq ret (concat ret "<unbound>" "\n"))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1615 (if (fboundp el) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1616 (setq ret (concat ret (prin1-to-string (symbol-function el)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1617 "\n")))))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1618 (save-excursion |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1619 (set-buffer (get-buffer-create "*forms-mode debug*")) |
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1620 (if (zerop (buffer-size)) |
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1621 (emacs-lisp-mode)) |
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1622 (goto-char (point-max)) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1623 (insert ret))))) |
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1624 |
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1625 ;;; forms.el ends here. |