Mercurial > emacs
annotate lisp/forms.el @ 9110:c0eefdfd11f4
(sys_subshell): Use type test macros.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 27 Sep 1994 01:18:46 +0000 |
| parents | 9e9987dda110 |
| children | a6018b04fb9d |
| 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 |
|
4867
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
4 ;; Author: Johan Vromans <jv@nl.net> |
|
8352
9e9987dda110
(forms--update): Undo change made mistakenly.
Richard M. Stallman <rms@gnu.org>
parents:
8344
diff
changeset
|
5 ;; Version: $Revision: 2.9 $ |
|
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 ;;; | |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
29 ;;; The names of all variables and functions start with 'forms-'. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
30 ;;; Names which start with 'forms--' are intended for internal use, and |
| 276 | 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 ;;; |
| 4790 | 116 ;;; forms-forms-scroll [bool, default nil] |
|
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 ;;; |
| 4790 | 121 ;;; forms-forms-jump [bool, default nil] |
|
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 ;;; |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
126 ;;; forms-read-file-filter [symbol, default nil] |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
127 ;;; If not nil: this should be the name of a |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
128 ;;; function that is called after the forms data file |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
129 ;;; has been read. It can be used to transform |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
130 ;;; the contents of the file into a format more suitable |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
131 ;;; for forms-mode processing. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
132 ;;; |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
133 ;;; forms-write-file-filter [symbol, default nil] |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
134 ;;; If not nil: this should be the name of a |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
135 ;;; function that is called before the forms data file |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
136 ;;; is written (saved) to disk. It can be used to undo |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
137 ;;; the effects of `forms-read-file-filter', if any. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
138 ;;; |
| 4790 | 139 ;;; forms-new-record-filter [symbol, default nil] |
| 140 ;;; If not nil: this should be the name of a | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
141 ;;; 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
|
142 ;;; record is created. It can be used to fill in |
| 276 | 143 ;;; the new record with default fields, for example. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
144 ;;; |
| 4790 | 145 ;;; forms-modified-record-filter [symbol, default nil] |
| 146 ;;; If not nil: this should be the name of a | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
147 ;;; 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
|
148 ;;; 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
|
149 ;;; are parsed. It can be used to register |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
150 ;;; modification dates, for example. |
| 276 | 151 ;;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
152 ;;; 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
|
153 ;;; 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
|
154 ;;; 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
|
155 ;;; modified (using text-property `read-only'). |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
156 ;;; 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
|
157 ;;; distinct face, if possible. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
158 ;;; 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
|
159 ;;; with text properties. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
160 ;;; 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
|
161 ;;; copied from face `region'. |
|
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-ro-face [symbol, default 'default] |
|
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-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
|
166 ;;; 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
|
167 ;;; valid face. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
168 ;;; E.g. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
169 ;;; (make-face 'my-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
170 ;;; (setq forms-ro-face 'my-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
171 ;;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
172 ;;; forms-rw-face [symbol, default 'region] |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
173 ;;; 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
|
174 ;;; read-write text on the screen. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
175 ;;; |
| 276 | 176 ;;; After evaluating the control file, its buffer is cleared and used |
| 177 ;;; for further processing. | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
178 ;;; 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
|
179 ;;; `forms--file-buffer' which will not normally be shown. |
| 276 | 180 ;;; 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
|
181 ;;; outside of this package while it is being visited! |
| 276 | 182 ;;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
183 ;;; 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
|
184 ;;; 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
|
185 ;;; 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
|
186 ;;; 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
|
187 ;;; the records according to `forms-format-list'. |
| 276 | 188 ;;; |
| 189 ;;; 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
|
190 ;;; 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
|
191 ;;; 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
|
192 ;;; 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
|
193 ;;; 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
|
194 ;;; 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
|
195 ;;; A parse routine `forms--parser' is built upon startup to parse |
| 276 | 196 ;;; the records. |
| 197 ;;; | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
198 ;;; 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
|
199 ;;; `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
|
200 ;;; `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
|
201 ;;; 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
|
202 ;;; questions anyway. |
| 276 | 203 ;;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
204 ;;; Other functions provided by forms mode are: |
| 276 | 205 ;;; |
| 206 ;;; paging (forward, backward) by record | |
| 207 ;;; jumping (first, last, random number) | |
| 208 ;;; searching | |
| 209 ;;; creating and deleting records | |
| 210 ;;; reverting the form (NOT the file buffer) | |
| 211 ;;; switching edit <-> view mode v.v. | |
| 212 ;;; jumping from field to field | |
| 213 ;;; | |
| 214 ;;; As an documented side-effect: jumping to the last record in the | |
| 215 ;;; file (using forms-last-record) will adjust forms--total-records if | |
| 216 ;;; needed. | |
| 217 ;;; | |
| 4790 | 218 ;;; The forms buffer can be in on eof two modes: edit mode or view |
| 219 ;;; mode. View mode is a read-only mode, you cannot modify the | |
| 220 ;;; contents of the buffer. | |
| 276 | 221 ;;; |
| 4790 | 222 ;;; Edit mode commands: |
| 223 ;;; | |
| 224 ;;; TAB forms-next-field | |
| 225 ;;; \C-c TAB forms-next-field | |
| 226 ;;; \C-c < forms-first-record | |
| 227 ;;; \C-c > forms-last-record | |
| 228 ;;; \C-c ? describe-mode | |
| 229 ;;; \C-c \C-k forms-delete-record | |
| 230 ;;; \C-c \C-q forms-toggle-read-only | |
| 231 ;;; \C-c \C-o forms-insert-record | |
| 232 ;;; \C-c \C-l forms-jump-record | |
| 233 ;;; \C-c \C-n forms-next-record | |
| 234 ;;; \C-c \C-p forms-prev-record | |
| 235 ;;; \C-c \C-s forms-search | |
| 236 ;;; \C-c \C-x forms-exit | |
| 237 ;;; | |
| 238 ;;; Read-only mode commands: | |
| 239 ;;; | |
| 240 ;;; SPC forms-next-record | |
| 241 ;;; DEL forms-prev-record | |
| 242 ;;; ? describe-mode | |
| 243 ;;; \C-q forms-toggle-read-only | |
| 244 ;;; l forms-jump-record | |
| 245 ;;; n forms-next-record | |
| 246 ;;; p forms-prev-record | |
| 247 ;;; s forms-search | |
| 248 ;;; x forms-exit | |
| 249 ;;; | |
| 250 ;;; Of course, it is also possible to use the \C-c prefix to obtain the | |
| 251 ;;; same command keys as in edit mode. | |
| 252 ;;; | |
| 253 ;;; The following bindings are available, independent of the mode: | |
| 254 ;;; | |
| 255 ;;; [next] forms-next-record | |
| 256 ;;; [prior] forms-prev-record | |
| 257 ;;; [begin] forms-first-record | |
| 258 ;;; [end] forms-last-record | |
| 259 ;;; [S-TAB] forms-prev-field | |
| 260 ;;; [backtab] forms-prev-field | |
| 276 | 261 ;;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
262 ;;; 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
|
263 ;;; don't need the C-c prefix for this command. |
| 276 | 264 ;;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
265 ;;; 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
|
266 ;;; the bindings of standard functions `scroll-up', `scroll-down', |
| 4790 | 267 ;;; `beginning-of-buffer' and `end-of-buffer' can be locally replaced with |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
268 ;;; 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
|
269 ;;; record. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
270 ;;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
271 ;;; `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
|
272 ;;; 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
|
273 ;;; revert a forms to original. |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
274 |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
275 ;;; Code: |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
276 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
277 ;;; Global variables and constants: |
| 276 | 278 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
279 (provide 'forms) ;;; official |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
280 (provide 'forms-mode) ;;; for compatibility |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
281 |
|
8352
9e9987dda110
(forms--update): Undo change made mistakenly.
Richard M. Stallman <rms@gnu.org>
parents:
8344
diff
changeset
|
282 (defconst forms-version (substring "$Revision: 2.9 $" 11 -2) |
| 4790 | 283 "The version number of forms-mode (as string). The complete RCS id is: |
| 284 | |
|
8352
9e9987dda110
(forms--update): Undo change made mistakenly.
Richard M. Stallman <rms@gnu.org>
parents:
8344
diff
changeset
|
285 $Id: forms.el,v 2.9 1994/07/26 19:47:39 rms Exp rms $") |
| 276 | 286 |
| 287 (defvar forms-mode-hooks nil | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
288 "Hook functions to be run upon entering Forms mode.") |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
289 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
290 ;;; Mandatory variables - must be set by evaluating the control file. |
| 276 | 291 |
| 292 (defvar forms-file nil | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
293 "Name of the file holding the data.") |
| 276 | 294 |
| 295 (defvar forms-format-list nil | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
296 "List of formatting specifications.") |
| 276 | 297 |
| 298 (defvar forms-number-of-fields nil | |
| 299 "Number of fields per record.") | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
300 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
301 ;;; Optional variables with default values. |
| 276 | 302 |
| 303 (defvar forms-field-sep "\t" | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
304 "Field separator character (default TAB).") |
| 276 | 305 |
| 306 (defvar forms-read-only nil | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
307 "Non-nil means: visit the file in view (read-only) mode. |
| 7639 | 308 \(Defaults to the write access on the data file).") |
| 276 | 309 |
| 310 (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
|
311 "If not nil: use this character to separate multi-line fields (default C-k).") |
| 276 | 312 |
| 4790 | 313 (defvar forms-forms-scroll nil |
| 3828 | 314 "*Non-nil means replace scroll-up/down commands in Forms mode. |
| 315 The replacement commands performs forms-next/prev-record.") | |
| 276 | 316 |
| 4790 | 317 (defvar forms-forms-jump nil |
| 3828 | 318 "*Non-nil means redefine beginning/end-of-buffer in Forms mode. |
| 319 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
|
320 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
321 (defvar forms-read-file-filter nil |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
322 "The name of a function that is called after reading the data file. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
323 This can be used to change the contents of the file to something more |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
324 suitable for forms processing.") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
325 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
326 (defvar forms-write-file-filter nil |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
327 "The name of a function that is called before writing the data file. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
328 This can be used to undo the effects of form-read-file-hook.") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
329 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
330 (defvar forms-new-record-filter nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
331 "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
|
332 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
333 (defvar forms-modified-record-filter nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
334 "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
|
335 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
336 (defvar forms-fields nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
337 "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
|
338 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
|
339 The contents may NOT be modified.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
340 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
341 (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
|
342 "*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
|
343 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
|
344 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
345 (defvar forms-ro-face 'default |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
346 "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
|
347 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
348 (defvar forms-rw-face 'region |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
349 "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
|
350 |
| 276 | 351 ;;; Internal variables. |
| 352 | |
| 353 (defvar forms--file-buffer nil | |
| 354 "Buffer which holds the file data") | |
| 355 | |
| 356 (defvar forms--total-records 0 | |
| 357 "Total number of records in the data file.") | |
| 358 | |
| 359 (defvar forms--current-record 0 | |
| 360 "Number of the record currently on the screen.") | |
| 361 | |
| 4790 | 362 (defvar forms-mode-map nil |
| 276 | 363 "Keymap for form buffer.") |
| 4790 | 364 (defvar forms-mode-ro-map nil |
| 365 "Keymap for form buffer in view mode.") | |
| 366 (defvar forms-mode-edit-map nil | |
| 367 "Keymap for form buffer in edit mode.") | |
| 276 | 368 |
| 369 (defvar forms--markers nil | |
| 370 "Field markers in the screen.") | |
| 371 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
372 (defvar forms--dyntexts nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
373 "Dynamic texts (resulting from function calls) on the screen.") |
| 276 | 374 |
| 375 (defvar forms--the-record-list nil | |
| 376 "List of strings of the current record, as parsed from the file.") | |
| 377 | |
| 378 (defvar forms--search-regexp nil | |
| 379 "Last regexp used by forms-search.") | |
| 380 | |
| 381 (defvar forms--format nil | |
| 382 "Formatting routine.") | |
| 383 | |
| 384 (defvar forms--parser nil | |
| 385 "Forms parser routine.") | |
| 386 | |
| 387 (defvar forms--mode-setup nil | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
388 "To keep track of forms-mode being set-up.") |
| 276 | 389 (make-variable-buffer-local 'forms--mode-setup) |
| 390 | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
391 (defvar forms--dynamic-text nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
392 "Array that holds dynamic texts to insert between fields.") |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
393 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
394 (defvar forms--elements nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
395 "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
|
396 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
397 (defvar forms--ro-face nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
398 "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
|
399 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
400 (defvar forms--rw-face nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
401 "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
|
402 |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
403 ;;;###autoload |
| 276 | 404 (defun forms-mode (&optional primary) |
| 405 "Major mode to visit files in a field-structured manner using a form. | |
| 406 | |
| 4790 | 407 Commands: Equivalent keys in read-only mode: |
| 408 TAB forms-next-field TAB | |
| 409 \\C-c TAB forms-next-field | |
| 410 \\C-c < forms-first-record < | |
| 411 \\C-c > forms-last-record > | |
| 412 \\C-c ? describe-mode ? | |
| 413 \\C-c \\C-k forms-delete-record | |
| 414 \\C-c \\C-q forms-toggle-read-only q | |
| 415 \\C-c \\C-o forms-insert-record | |
| 416 \\C-c \\C-l forms-jump-record l | |
| 417 \\C-c \\C-n forms-next-record n | |
| 418 \\C-c \\C-p forms-prev-record p | |
| 419 \\C-c \\C-s forms-search s | |
| 420 \\C-c \\C-x forms-exit x | |
| 421 " | |
| 422 (interactive) | |
| 276 | 423 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
424 ;; 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
|
425 ;; 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
|
426 ;; 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
|
427 ;; 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
|
428 ;; 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
|
429 ;; `find-file'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
430 ;; 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
|
431 ;; 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
|
432 ;; placed all calls in this function. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
433 |
| 276 | 434 ;; Primary set-up: evaluate buffer and check if the mandatory |
| 435 ;; variables have been set. | |
| 436 (if (or primary (not forms--mode-setup)) | |
| 437 (progn | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
438 ;;(message "forms: setting up...") |
| 276 | 439 (kill-all-local-variables) |
| 440 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
441 ;; Make mandatory variables. |
| 276 | 442 (make-local-variable 'forms-file) |
| 443 (make-local-variable 'forms-number-of-fields) | |
| 444 (make-local-variable 'forms-format-list) | |
| 445 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
446 ;; Make optional variables. |
| 276 | 447 (make-local-variable 'forms-field-sep) |
| 448 (make-local-variable 'forms-read-only) | |
| 449 (make-local-variable 'forms-multi-line) | |
| 450 (make-local-variable 'forms-forms-scroll) | |
| 451 (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
|
452 (make-local-variable 'forms-use-text-properties) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
453 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
454 ;; Filter functions. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
455 (make-local-variable 'forms-read-file-filter) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
456 (make-local-variable 'forms-write-file-filter) |
| 4790 | 457 (make-local-variable 'forms-new-record-filter) |
| 458 (make-local-variable 'forms-modified-record-filter) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
459 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
460 ;; Make sure no filters exist. |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
461 (setq forms-read-file-filter nil) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
462 (setq forms-write-file-filter nil) |
| 4790 | 463 (setq forms-new-record-filter nil) |
| 464 (setq forms-modified-record-filter nil) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
465 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
466 ;; 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
|
467 ;; read-write fields. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
468 (if (fboundp 'make-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
469 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
470 (make-local-variable 'forms-ro-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
471 (make-local-variable 'forms-rw-face))) |
| 276 | 472 |
| 473 ;; 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
|
474 ;;(message "forms: processing control file...") |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
475 ;; If enable-local-eval is not set to t the user is asked first. |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
476 (if (or (eq enable-local-eval t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
477 (yes-or-no-p |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
478 (concat "Evaluate lisp code in buffer " |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
479 (buffer-name) " to display forms "))) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
480 (eval-current-buffer) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
481 (error "`enable-local-eval' inhibits buffer evaluation")) |
| 276 | 482 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
483 ;; Check if the mandatory variables make sense. |
| 276 | 484 (or forms-file |
| 4790 | 485 (error (concat "Forms control file error: " |
| 486 "'forms-file' has not been set"))) | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
487 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
488 ;; Check forms-field-sep first, since it can be needed to |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
489 ;; construct a default format list. |
| 4790 | 490 (or (stringp forms-field-sep) |
| 491 (error (concat "Forms control file error: " | |
| 492 "'forms-field-sep' is not a string"))) | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
493 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
494 (if forms-number-of-fields |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
495 (or (and (numberp forms-number-of-fields) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
496 (> forms-number-of-fields 0)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
497 (error (concat "Forms control file error: " |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
498 "'forms-number-of-fields' must be a number > 0"))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
499 (or (null forms-format-list) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
500 (error (concat "Forms control file error: " |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
501 "'forms-number-of-fields' has not been set")))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
502 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
503 (or forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
504 (forms--intuit-from-file)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
505 |
| 276 | 506 (if forms-multi-line |
| 507 (if (and (stringp forms-multi-line) | |
| 508 (eq (length forms-multi-line) 1)) | |
| 509 (if (string= forms-multi-line forms-field-sep) | |
| 4790 | 510 (error (concat "Forms control file error: " |
| 511 "'forms-multi-line' is equal to 'forms-field-sep'"))) | |
| 512 (error (concat "Forms control file error: " | |
| 513 "'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
|
514 (or (fboundp 'set-text-properties) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
515 (setq forms-use-text-properties nil)) |
| 276 | 516 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
517 ;; Validate and process forms-format-list. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
518 ;;(message "forms: pre-processing format list...") |
| 276 | 519 (forms--process-format-list) |
| 520 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
521 ;; Build the formatter and parser. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
522 ;;(message "forms: building formatter...") |
| 276 | 523 (make-local-variable 'forms--format) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
524 (make-local-variable 'forms--markers) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
525 (make-local-variable 'forms--dyntexts) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
526 (make-local-variable 'forms--elements) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
527 ;;(message "forms: building parser...") |
| 276 | 528 (forms--make-format) |
| 529 (make-local-variable 'forms--parser) | |
| 530 (forms--make-parser) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
531 ;;(message "forms: building parser... done.") |
| 276 | 532 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
533 ;; Check if record filters are defined. |
| 4790 | 534 (if (and forms-new-record-filter |
| 535 (not (fboundp forms-new-record-filter))) | |
| 536 (error (concat "Forms control file error: " | |
| 537 "'forms-new-record-filter' is not a function"))) | |
| 538 | |
| 539 (if (and forms-modified-record-filter | |
| 540 (not (fboundp forms-modified-record-filter))) | |
| 541 (error (concat "Forms control file error: " | |
| 542 "'forms-modified-record-filter' is not a function"))) | |
| 276 | 543 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
544 ;; 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
|
545 (make-local-variable 'forms-fields) |
| 276 | 546 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
547 ;; Dynamic text support. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
548 (make-local-variable 'forms--dynamic-text) |
| 276 | 549 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
550 ;; Prevent accidental overwrite of the control file and autosave. |
|
7381
9e7dd6d12e1f
(forms-mode): Set visited file name to nil to prevent overwrite and autosave.
Karl Heuer <kwzh@gnu.org>
parents:
6561
diff
changeset
|
551 (set-visited-file-name nil) |
| 276 | 552 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
553 ;; Prepare this buffer for further processing. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
554 (setq buffer-read-only nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
555 (erase-buffer) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
556 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
557 ;;(message "forms: setting up... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
558 )) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
559 |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
560 ;; initialization done |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
561 (setq forms--mode-setup t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
562 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
563 ;; 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
|
564 (if (fboundp 'make-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
565 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
566 (make-local-variable 'forms--ro-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
567 (make-local-variable 'forms--rw-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
568 (if forms-read-only |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
569 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
570 (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
|
571 (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
|
572 (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
|
573 (setq forms--rw-face forms-rw-face)))) |
| 276 | 574 |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
575 ;; Make more local variables. |
| 276 | 576 (make-local-variable 'forms--file-buffer) |
| 577 (make-local-variable 'forms--total-records) | |
| 578 (make-local-variable 'forms--current-record) | |
| 579 (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
|
580 (make-local-variable 'forms--search-regexp) |
| 276 | 581 |
| 4790 | 582 ; The keymaps are global, so multiple forms mode buffers can share them. |
| 583 ;(make-local-variable 'forms-mode-map) | |
| 584 ;(make-local-variable 'forms-mode-ro-map) | |
| 585 ;(make-local-variable 'forms-mode-edit-map) | |
| 276 | 586 (if forms-mode-map ; already defined |
| 587 nil | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
588 ;;(message "forms: building keymap...") |
| 4790 | 589 (forms--mode-commands) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
590 ;;(message "forms: building keymap... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
591 ) |
| 276 | 592 |
|
6561
eafeaeff6fa5
(forms-mode): Set major mode before finding forms-file. (This gives
Karl Heuer <kwzh@gnu.org>
parents:
4867
diff
changeset
|
593 ;; set the major mode indicator |
|
eafeaeff6fa5
(forms-mode): Set major mode before finding forms-file. (This gives
Karl Heuer <kwzh@gnu.org>
parents:
4867
diff
changeset
|
594 (setq major-mode 'forms-mode) |
|
eafeaeff6fa5
(forms-mode): Set major mode before finding forms-file. (This gives
Karl Heuer <kwzh@gnu.org>
parents:
4867
diff
changeset
|
595 (setq mode-name "Forms") |
|
eafeaeff6fa5
(forms-mode): Set major mode before finding forms-file. (This gives
Karl Heuer <kwzh@gnu.org>
parents:
4867
diff
changeset
|
596 |
| 276 | 597 ;; find the data file |
| 598 (setq forms--file-buffer (find-file-noselect forms-file)) | |
| 599 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
600 ;; Pre-transform. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
601 (let ((read-file-filter forms-read-file-filter) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
602 (write-file-filter forms-write-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
603 (if read-file-filter |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
604 (save-excursion |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
605 (set-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
606 (let ((inhibit-read-only t)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
607 (run-hooks 'read-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
608 (set-buffer-modified-p nil) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
609 (if write-file-filter |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
610 (progn |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
611 (make-variable-buffer-local 'local-write-file-hooks) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
612 (setq local-write-file-hooks (list write-file-filter))))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
613 (if write-file-filter |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
614 (save-excursion |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
615 (set-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
616 (make-variable-buffer-local 'local-write-file-hooks) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
617 (setq local-write-file-hooks write-file-filter))))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
618 |
| 276 | 619 ;; count the number of records, and set see if it may be modified |
| 620 (let (ro) | |
| 621 (setq forms--total-records | |
| 622 (save-excursion | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
623 (prog1 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
624 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
625 ;;(message "forms: counting records...") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
626 (set-buffer forms--file-buffer) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
627 (bury-buffer (current-buffer)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
628 (setq ro buffer-read-only) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
629 (count-lines (point-min) (point-max))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
630 ;;(message "forms: counting records... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
631 ))) |
| 276 | 632 (if ro |
| 633 (setq forms-read-only t))) | |
| 634 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
635 ;;(message "forms: proceeding setup...") |
|
4867
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
636 |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
637 ;; Since we aren't really implementing a minor mode, we hack the modeline |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
638 ;; directly to get the text " View " into forms-read-only form buffers. For |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
639 ;; that reason, this variable must be buffer only. |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
640 (make-local-variable 'minor-mode-alist) |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
641 (setq minor-mode-alist (list (list 'forms-read-only " View"))) |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
642 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
643 ;;(message "forms: proceeding setup (keymaps)...") |
| 276 | 644 (forms--set-keymaps) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
645 ;;(message "forms: proceeding setup (commands)...") |
|
3827
4089cf0e3f06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
3697
diff
changeset
|
646 (forms--change-commands) |
| 276 | 647 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
648 ;;(message "forms: proceeding setup (buffer)...") |
| 276 | 649 (set-buffer-modified-p nil) |
| 650 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
651 (if (= forms--total-records 0) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
652 ;;(message "forms: proceeding setup (new file)...") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
653 (progn |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
654 (insert |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
655 "GNU Emacs Forms Mode version " forms-version "\n\n" |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
656 (if (file-exists-p forms-file) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
657 (concat "No records available in file \"" forms-file "\".\n\n") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
658 (format "Creating new file \"%s\"\nwith %d field%s per record.\n\n" |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
659 forms-file forms-number-of-fields |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
660 (if (= 1 forms-number-of-fields) "" "s"))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
661 "Use " (substitute-command-keys "\\[forms-insert-record]") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
662 " to create new records.\n") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
663 (setq forms--current-record 1) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
664 (setq buffer-read-only t) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
665 (set-buffer-modified-p nil)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
666 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
667 ;; setup the first (or current) record to show |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
668 (if (< forms--current-record 1) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
669 (setq forms--current-record 1)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
670 (forms-jump-record forms--current-record) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
671 ) |
| 276 | 672 |
| 673 ;; user customising | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
674 ;;(message "forms: proceeding setup (user hooks)...") |
| 276 | 675 (run-hooks 'forms-mode-hooks) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
676 ;;(message "forms: setting up... done.") |
| 276 | 677 |
| 678 ;; be helpful | |
| 679 (forms--help) | |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
680 ) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
681 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
682 (defun forms--process-format-list () |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
683 ;; 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
|
684 ;; 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
|
685 ;; concatenated. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
686 ;; 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
|
687 ;; 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
|
688 ;; `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
|
689 ;; from the form on the screen. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
690 ;; 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
|
691 ;; `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
|
692 ;; any checks. |
| 276 | 693 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
694 ;; Verify that `forms-format-list' is not nil. |
| 276 | 695 (or forms-format-list |
| 4790 | 696 (error (concat "Forms control file error: " |
| 697 "'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
|
698 ;; It must be a list. |
| 276 | 699 (or (listp forms-format-list) |
| 4790 | 700 (error (concat "Forms control file error: " |
| 701 "'forms-format-list' is not a list"))) | |
| 276 | 702 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
703 ;; Assume every field is painted once. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
704 ;; `forms--elements' will grow if needed. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
705 (setq forms--elements (make-vector forms-number-of-fields nil)) |
| 276 | 706 |
| 707 (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
|
708 (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
|
709 (prev-item nil) |
| 276 | 710 (field-num 0)) ; highest field number |
| 711 | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
712 (setq forms-format-list nil) ; gonna rebuild |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
713 |
| 276 | 714 (while the-list |
| 715 | |
| 716 (let ((el (car-safe the-list)) | |
| 717 (rem (cdr-safe the-list))) | |
| 718 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
719 ;; If it is a symbol, eval it first. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
720 (if (and (symbolp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
721 (boundp el)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
722 (setq el (eval el))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
723 |
| 276 | 724 (cond |
| 725 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
726 ;; Try string ... |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
727 ((stringp el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
728 (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
|
729 (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
|
730 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
731 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
732 (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
|
733 (setq prev-item el))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
734 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
735 ;; Try numeric ... |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
736 ((numberp el) |
| 276 | 737 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
738 ;; Validate range. |
| 276 | 739 (if (or (<= el 0) |
| 740 (> el forms-number-of-fields)) | |
| 4790 | 741 (error (concat "Forms format error: " |
| 742 "field number %d out of range 1..%d") | |
| 743 el forms-number-of-fields)) | |
| 276 | 744 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
745 ;; Store forms order. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
746 (if (> field-num (length forms--elements)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
747 (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
|
748 (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
|
749 (setq field-num (1+ field-num)) |
| 276 | 750 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
751 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
752 (setq forms-format-list |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
753 (append forms-format-list (list prev-item) nil))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
754 (setq prev-item el)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
755 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
756 ;; Try function ... |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
757 ((listp el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
758 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
759 ;; Validate. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
760 (or (fboundp (car-safe el)) |
| 4790 | 761 (error (concat "Forms format error: " |
| 762 "not a function " | |
| 763 (prin1-to-string (car-safe el))))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
764 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
765 ;; Shift. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
766 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
767 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
768 (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
|
769 (setq prev-item el)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
770 |
| 276 | 771 ;; else |
| 772 (t | |
| 4790 | 773 (error (concat "Forms format error: " |
| 774 "invalid element " | |
| 775 (prin1-to-string el))))) | |
| 276 | 776 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
777 ;; 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
|
778 (setq the-list rem))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
779 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
780 ;; Append last item. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
781 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
782 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
783 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
784 (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
|
785 ;; Append a newline if the last item is a field. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
786 ;; This prevents parsing problems. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
787 ;; 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
|
788 (if (numberp prev-item) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
789 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
790 (append forms-format-list (list "\n") nil)))))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
791 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
792 (forms--debug 'forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
793 'forms--elements)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
794 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
795 ;; Special treatment for read-only segments. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
796 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
797 ;; If text is inserted between two read-only segments, it inherits the |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
798 ;; read-only properties. This is not what we want. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
799 ;; To solve this, read-only segments get the `insert-in-front-hooks' |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
800 ;; property set with a function that temporarily switches the properties |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
801 ;; of the first character of the segment to read-write, so the new |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
802 ;; text gets the right properties. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
803 ;; The `post-command-hook' is used to restore the original properties. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
804 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
805 (defvar forms--iif-start nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
806 "Record start of modification command.") |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
807 (defvar forms--iif-properties nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
808 "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
|
809 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
810 (defun forms--iif-hook (begin end) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
811 "`insert-in-front-hooks' function for read-only segments." |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
812 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
813 ;; Note start location. By making it a marker that points one |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
814 ;; character beyond the actual location, it is guaranteed to move |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
815 ;; correctly if text is inserted. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
816 (or forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
817 (setq forms--iif-start (copy-marker (1+ (point))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
818 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
819 ;; Check if there is special treatment required. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
820 (if (or (<= forms--iif-start 2) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
821 (get-text-property (- forms--iif-start 2) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
822 'read-only)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
823 (progn |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
824 ;; Fetch current properties. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
825 (setq forms--iif-properties |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
826 (text-properties-at (1- forms--iif-start))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
827 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
828 ;; Replace them. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
829 (let ((inhibit-read-only t)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
830 (set-text-properties |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
831 (1- forms--iif-start) forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
832 (list 'face forms--rw-face 'front-sticky '(face)))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
833 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
834 ;; Enable `post-command-hook' to restore the properties. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
835 (setq post-command-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
836 (append (list 'forms--iif-post-command-hook) post-command-hook))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
837 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
838 ;; No action needed. Clear marker. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
839 (setq forms--iif-start nil))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
840 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
841 (defun forms--iif-post-command-hook () |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
842 "`post-command-hook' function for read-only segments." |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
843 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
844 ;; Disable `post-command-hook'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
845 (setq post-command-hook |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
846 (delq 'forms--iif-hook-post-command-hook post-command-hook)) |
|
4121
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 ;; Restore properties. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
849 (if forms--iif-start |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
850 (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
851 (set-text-properties |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
852 (1- forms--iif-start) forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
853 forms--iif-properties))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
854 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
855 ;; Cleanup. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
856 (setq forms--iif-start nil)) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
857 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
858 (defvar forms--marker) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
859 (defvar forms--dyntext) |
| 276 | 860 |
| 861 (defun forms--make-format () | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
862 "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
|
863 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
864 ;; 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
|
865 ;; `forms-format-list'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
866 ;; 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
|
867 ;; which function to mapcar. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
868 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
869 (let ((forms--marker 0) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
870 (forms--dyntext 0)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
871 (setq |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
872 forms--format |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
873 (if forms-use-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
874 (` (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
875 (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
876 (,@ (apply 'append |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
877 (mapcar 'forms--make-format-elt-using-text-properties |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
878 forms-format-list))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
879 ;; Prevent insertion before the first text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
880 (,@ (if (numberp (car forms-format-list)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
881 nil |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
882 '((add-text-properties (point-min) (1+ (point-min)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
883 '(front-sticky (read-only)))))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
884 ;; Prevent insertion after the last text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
885 (remove-text-properties (1- (point)) (point) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
886 '(rear-nonsticky))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
887 (setq forms--iif-start nil))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
888 (` (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
889 (,@ (apply 'append |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
890 (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
|
891 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
892 ;; 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
|
893 ;; 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
|
894 (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
|
895 (setq forms--dyntexts (make-vector forms--dyntext nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
896 (forms--debug 'forms--format)) |
| 276 | 897 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
898 (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
|
899 "Helper routine to generate format function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
900 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
901 ;; 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
|
902 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
903 ;; ;; preamble |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
904 ;; (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
905 ;; (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
906 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
907 ;; ;; A string, e.g. "text: ". |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
908 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
909 ;; (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
910 ;; (progn (insert "text: ") (point)) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
911 ;; (list 'face forms--ro-face |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
912 ;; 'read-only 1 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
913 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
914 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
915 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
916 ;; ;; A field, e.g. 6. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
917 ;; (let ((here (point))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
918 ;; (aset forms--markers 0 (point-marker)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
919 ;; (insert (elt arg 5)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
920 ;; (or (= (point) here) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
921 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
922 ;; here (point) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
923 ;; (list 'face forms--rw-face |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
924 ;; 'front-sticky '(face)))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
925 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
926 ;; ;; Another string, e.g. "\nmore text: ". |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
927 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
928 ;; (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
929 ;; (progn (insert "\nmore text: ") (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
930 ;; (list 'face forms--ro-face |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
931 ;; 'read-only 2 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
932 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
933 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
934 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
935 ;; ;; A function, e.g. (tocol 40). |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
936 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
937 ;; (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
938 ;; (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
939 ;; (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
|
940 ;; (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
941 ;; (list 'face forms--ro-face |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
942 ;; 'read-only 2 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
943 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
944 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
945 ;; |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
946 ;; ;; Prevent insertion before the first text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
947 ;; (add-text-properties (point-min) (1+ (point-min)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
948 ;; '(front-sticky (read-only)))))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
949 ;; ;; Prevent insertion after the last text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
950 ;; (remove-text-properties (1- (point)) (point) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
951 ;; '(rear-nonsticky))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
952 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
953 ;; ;; wrap up |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
954 ;; (setq forms--iif-start nil) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
955 ;; )) |
|
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 (cond |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
958 ((stringp el) |
|
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 (` ((set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
961 (point) ; start at point |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
962 (progn ; until after insertion |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
963 (insert (, el)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
964 (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
965 (list 'face forms--ro-face ; read-only appearance |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
966 'read-only (,@ (list (1+ forms--marker))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
967 'insert-in-front-hooks '(forms--iif-hook) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
968 'rear-nonsticky '(face read-only insert-in-front-hooks)))))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
969 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
970 ((numberp el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
971 (` ((let ((here (point))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
972 (aset forms--markers |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
973 (, (prog1 forms--marker |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
974 (setq forms--marker (1+ forms--marker)))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
975 (point-marker)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
976 (insert (elt arg (, (1- el)))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
977 (or (= (point) here) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
978 (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
979 here (point) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
980 (list 'face forms--rw-face |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
981 'front-sticky '(face)))))))) |
|
4121
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 ((listp el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
984 (` ((set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
985 (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
986 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
987 (insert (aset forms--dyntexts |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
988 (, (prog1 forms--dyntext |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
989 (setq forms--dyntext (1+ forms--dyntext)))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
990 (, el))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
991 (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
992 (list 'face forms--ro-face |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
993 'read-only (,@ (list (1+ forms--marker))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
994 'insert-in-front-hooks '(forms--iif-hook) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
995 'rear-nonsticky '(read-only face insert-in-front-hooks)))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
996 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
997 ;; end of cond |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
998 )) |
| 276 | 999 |
| 1000 (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
|
1001 "Helper routine to generate format function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1002 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1003 ;; 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
|
1004 ;; `forms--format' will look like |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1005 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1006 ;; (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1007 ;; ;; a string, e.g. "text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1008 ;; (insert "text: ") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1009 ;; ;; a field, e.g. 6 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1010 ;; (aset forms--markers 0 (point-marker)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1011 ;; (insert (elt arg 5)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1012 ;; ;; another string, e.g. "\nmore text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1013 ;; (insert "\nmore text: ") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1014 ;; ;; a function, e.g. (tocol 40) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1015 ;; (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
|
1016 ;; ... ) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1017 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1018 (cond |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1019 ((stringp el) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1020 (` ((insert (, el))))) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1021 ((numberp el) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1022 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1023 (` ((aset forms--markers (, forms--marker) (point-marker)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1024 (insert (elt arg (, (1- el)))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1025 (setq forms--marker (1+ forms--marker)))) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1026 ((listp el) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1027 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1028 (` ((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
|
1029 (setq forms--dyntext (1+ forms--dyntext)))))) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1030 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1031 (defvar forms--field) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1032 (defvar forms--recordv) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1033 (defvar forms--seen-text) |
| 276 | 1034 |
| 1035 (defun forms--make-parser () | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1036 "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
|
1037 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1038 ;; 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
|
1039 ;; `forms--parser-using-text-properties'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1040 ;; 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
|
1041 ;; `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
|
1042 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1043 (setq |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1044 forms--parser |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1045 (if forms-use-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1046 (function forms--parser-using-text-properties) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1047 (let ((forms--field nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1048 (forms--seen-text nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1049 (forms--dyntext 0)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1050 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1051 ;; 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
|
1052 ;; 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
|
1053 (` (lambda nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1054 (let (here) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1055 (goto-char (point-min)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1056 (,@ (apply 'append |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1057 (mapcar |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1058 'forms--make-parser-elt |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1059 (append forms-format-list (list nil))))))))))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1060 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1061 (forms--debug 'forms--parser)) |
| 276 | 1062 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1063 (defun forms--parser-using-text-properties () |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1064 "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
|
1065 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1066 ;; 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
|
1067 ;; 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
|
1068 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1069 (let ((i 0) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1070 here there) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1071 (while (< i (length forms--markers)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1072 (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
|
1073 (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
|
1074 (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
|
1075 (if (setq there |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1076 (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
|
1077 (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
|
1078 (buffer-substring here there)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1079 (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
|
1080 (buffer-substring here (point-max))))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1081 (setq i (1+ i))))) |
| 276 | 1082 |
| 1083 (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
|
1084 "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
|
1085 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1086 ;; The parse routine will look like: |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1087 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1088 ;; (lambda nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1089 ;; (let (here) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1090 ;; (goto-char (point-min)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1091 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1092 ;; ;; "text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1093 ;; (if (not (looking-at "text: ")) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1094 ;; (error "Parse error: cannot find \"text: \"")) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1095 ;; (forward-char 6) ; past "text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1096 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1097 ;; ;; 6 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1098 ;; ;; "\nmore text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1099 ;; (setq here (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1100 ;; (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
|
1101 ;; (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
|
1102 ;; (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
|
1103 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1104 ;; ;; (tocol 40) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1105 ;; (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
|
1106 ;; (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
|
1107 ;; (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
|
1108 ;; (forward-char (length forms--dyntext)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1109 ;; (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
|
1110 ;; ... |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1111 ;; ;; 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
|
1112 ;; (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
|
1113 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1114 (cond |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1115 ((stringp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1116 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1117 (if forms--field |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1118 (` ((setq here (point)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1119 (if (not (search-forward (, el) nil t nil)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1120 (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
|
1121 (aset forms--recordv (, (1- forms--field)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1122 (buffer-substring here |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1123 (- (point) (, (length el))))))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1124 (` ((if (not (looking-at (, (regexp-quote el)))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1125 (error "Parse error: not looking at \"%s\"" (, el))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1126 (forward-char (, (length el)))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1127 (setq forms--seen-text t) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1128 (setq forms--field nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1129 ((numberp el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1130 (if forms--field |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1131 (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
|
1132 forms--field el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1133 (setq forms--field el) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1134 nil)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1135 ((null el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1136 (if forms--field |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1137 (` ((aset forms--recordv (, (1- forms--field)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1138 (buffer-substring (point) (point-max))))))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1139 ((listp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1140 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1141 (if forms--field |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1142 (` ((let ((here (point)) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1143 (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
|
1144 (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
|
1145 (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
|
1146 (aset forms--recordv (, (1- forms--field)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1147 (buffer-substring here |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1148 (- (point) (length forms--dyntext))))))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1149 (` ((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
|
1150 (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
|
1151 (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
|
1152 (forward-char (length forms--dyntext)))))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1153 (setq forms--dyntext (1+ forms--dyntext)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1154 (setq forms--seen-text t) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1155 (setq forms--field nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1156 )) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1157 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1158 (defun forms--intuit-from-file () |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1159 "Get number of fields and a default form using the data file." |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1160 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1161 ;; If `forms-number-of-fields' is not set, get it from the data file. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1162 (if (null forms-number-of-fields) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1163 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1164 ;; Need a file to do this. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1165 (if (not (file-exists-p forms-file)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1166 (error "Need existing file or explicit 'forms-number-of-records'.") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1167 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1168 ;; Visit the file and extract the first record. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1169 (setq forms--file-buffer (find-file-noselect forms-file)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1170 (let ((read-file-filter forms-read-file-filter) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1171 (the-record)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1172 (setq the-record |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1173 (save-excursion |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1174 (set-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1175 (let ((inhibit-read-only t)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1176 (run-hooks 'read-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1177 (goto-char (point-min)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1178 (forms--get-record))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1179 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1180 ;; This may be overkill, but try to avoid interference with |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1181 ;; the normal processing. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1182 (kill-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1183 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1184 ;; Count the number of fields in `the-record'. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1185 (let (the-result |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1186 (start-pos 0) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1187 found-pos |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1188 (field-sep-length (length forms-field-sep))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1189 (setq forms-number-of-fields 1) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1190 (while (setq found-pos |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1191 (string-match forms-field-sep the-record start-pos)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1192 (progn |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1193 (setq forms-number-of-fields (1+ forms-number-of-fields)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1194 (setq start-pos (+ field-sep-length found-pos)))))))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1195 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1196 ;; Construct default format list. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1197 (setq forms-format-list (list "Forms file \"" forms-file "\".\n\n")) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1198 (let ((i 0)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1199 (while (<= (setq i (1+ i)) forms-number-of-fields) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1200 (setq forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1201 (append forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1202 (list (format "%4d: " i) i "\n")))))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1203 |
| 276 | 1204 (defun forms--set-keymaps () |
| 1205 "Set the keymaps used in this mode." | |
| 1206 | |
| 4790 | 1207 (use-local-map (if forms-read-only |
| 1208 forms-mode-ro-map | |
| 1209 forms-mode-edit-map))) | |
| 1210 | |
| 1211 (defun forms--mode-commands () | |
| 1212 "Fill the Forms mode keymaps." | |
| 276 | 1213 |
| 4790 | 1214 ;; `forms-mode-map' is always accessible via \C-c prefix. |
| 1215 (setq forms-mode-map (make-keymap)) | |
| 1216 (define-key forms-mode-map "\t" 'forms-next-field) | |
| 1217 (define-key forms-mode-map "\C-k" 'forms-delete-record) | |
| 1218 (define-key forms-mode-map "\C-q" 'forms-toggle-read-only) | |
| 1219 (define-key forms-mode-map "\C-o" 'forms-insert-record) | |
| 1220 (define-key forms-mode-map "\C-l" 'forms-jump-record) | |
| 1221 (define-key forms-mode-map "\C-n" 'forms-next-record) | |
| 1222 (define-key forms-mode-map "\C-p" 'forms-prev-record) | |
| 1223 (define-key forms-mode-map "\C-s" 'forms-search) | |
| 1224 (define-key forms-mode-map "\C-x" 'forms-exit) | |
| 1225 (define-key forms-mode-map "<" 'forms-first-record) | |
| 1226 (define-key forms-mode-map ">" 'forms-last-record) | |
| 1227 (define-key forms-mode-map "?" 'describe-mode) | |
| 1228 (define-key forms-mode-map "\C-?" 'forms-prev-record) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1229 |
| 4790 | 1230 ;; `forms-mode-ro-map' replaces the local map when in read-only mode. |
| 1231 (setq forms-mode-ro-map (make-keymap)) | |
| 1232 (suppress-keymap forms-mode-ro-map) | |
| 1233 (define-key forms-mode-ro-map "\C-c" forms-mode-map) | |
| 1234 (define-key forms-mode-ro-map "\t" 'forms-next-field) | |
| 1235 (define-key forms-mode-ro-map "q" 'forms-toggle-read-only) | |
| 1236 (define-key forms-mode-ro-map "l" 'forms-jump-record) | |
| 1237 (define-key forms-mode-ro-map "n" 'forms-next-record) | |
| 1238 (define-key forms-mode-ro-map "p" 'forms-prev-record) | |
| 1239 (define-key forms-mode-ro-map "s" 'forms-search) | |
| 1240 (define-key forms-mode-ro-map "x" 'forms-exit) | |
| 1241 (define-key forms-mode-ro-map "<" 'forms-first-record) | |
| 1242 (define-key forms-mode-ro-map ">" 'forms-last-record) | |
| 1243 (define-key forms-mode-ro-map "?" 'describe-mode) | |
| 1244 (define-key forms-mode-ro-map " " 'forms-next-record) | |
| 1245 (forms--mode-commands1 forms-mode-ro-map) | |
| 1246 | |
| 1247 ;; This is the normal, local map. | |
| 1248 (setq forms-mode-edit-map (make-keymap)) | |
| 1249 (define-key forms-mode-edit-map "\t" 'forms-next-field) | |
| 1250 (define-key forms-mode-edit-map "\C-c" forms-mode-map) | |
| 1251 (forms--mode-commands1 forms-mode-edit-map) | |
| 1252 ) | |
| 1253 | |
| 1254 (defun forms--mode-commands1 (map) | |
| 1255 "Helper routine to define keys." | |
| 1256 (define-key map [TAB] 'forms-next-field) | |
| 1257 (define-key map [S-tab] 'forms-prev-field) | |
| 1258 (define-key map [next] 'forms-next-record) | |
| 1259 (define-key map [prior] 'forms-prev-record) | |
| 1260 (define-key map [begin] 'forms-first-record) | |
| 1261 (define-key map [last] 'forms-last-record) | |
| 1262 (define-key map [backtab] 'forms-prev-field) | |
| 276 | 1263 ) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1264 |
| 276 | 1265 ;;; Changed functions |
| 1266 | |
| 1267 (defun forms--change-commands () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1268 "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
|
1269 |
| 276 | 1270 ;; scroll-down -> forms-prev-record |
| 1271 ;; scroll-up -> forms-next-record | |
| 3828 | 1272 (if forms-forms-scroll |
| 1273 (progn | |
| 1274 (substitute-key-definition 'scroll-up 'forms-next-record | |
| 1275 (current-local-map) | |
| 1276 (current-global-map)) | |
| 1277 (substitute-key-definition 'scroll-down 'forms-prev-record | |
| 1278 (current-local-map) | |
| 1279 (current-global-map)))) | |
| 276 | 1280 ;; |
| 1281 ;; beginning-of-buffer -> forms-first-record | |
| 1282 ;; end-of-buffer -> forms-end-record | |
| 3828 | 1283 (if forms-forms-jump |
| 1284 (progn | |
| 1285 (substitute-key-definition 'beginning-of-buffer 'forms-first-record | |
| 1286 (current-local-map) | |
| 1287 (current-global-map)) | |
| 1288 (substitute-key-definition 'end-of-buffer 'forms-last-record | |
| 1289 (current-local-map) | |
| 1290 (current-global-map)))) | |
| 276 | 1291 ;; |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1292 ;; Save buffer |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1293 (local-set-key "\C-x\C-s" 'forms-save-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1294 ;; |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1295 ;; We have our own revert function - use it. |
| 4790 | 1296 (make-local-variable 'revert-buffer-function) |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1297 (setq revert-buffer-function 'forms--revert-buffer) |
| 4790 | 1298 |
| 1299 t) | |
| 276 | 1300 |
| 1301 (defun forms--help () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1302 "Initial help for Forms mode." |
| 4790 | 1303 (message (substitute-command-keys (concat |
| 1304 "\\[forms-next-record]:next" | |
| 1305 " \\[forms-prev-record]:prev" | |
| 1306 " \\[forms-first-record]:first" | |
| 1307 " \\[forms-last-record]:last" | |
| 1308 " \\[describe-mode]:help")))) | |
| 276 | 1309 |
| 1310 (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
|
1311 "Translate in SUBJ all chars ARG into char REP. ARG and REP should |
| 276 | 1312 be single-char strings." |
| 1313 (let ((i 0) | |
| 1314 (x (length subj)) | |
| 1315 (re (regexp-quote arg)) | |
| 1316 (k (string-to-char rep))) | |
| 1317 (while (setq i (string-match re subj i)) | |
| 1318 (aset subj i k) | |
| 1319 (setq i (1+ i))))) | |
| 1320 | |
| 1321 (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
|
1322 "Internal exit from forms mode function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1323 |
| 276 | 1324 (let ((buf (buffer-name forms--file-buffer))) |
| 1325 (forms--checkmod) | |
| 1326 (if (and save | |
| 1327 (buffer-modified-p forms--file-buffer)) | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1328 (forms-save-buffer)) |
| 276 | 1329 (save-excursion |
| 1330 (set-buffer forms--file-buffer) | |
| 1331 (delete-auto-save-file-if-necessary) | |
| 1332 (kill-buffer (current-buffer))) | |
| 1333 (if (get-buffer buf) ; not killed??? | |
| 1334 (if save | |
| 1335 (progn | |
| 1336 (beep) | |
| 1337 (message "Problem saving buffers?"))) | |
| 1338 (delete-auto-save-file-if-necessary) | |
| 1339 (kill-buffer (current-buffer))))) | |
| 1340 | |
| 1341 (defun forms--get-record () | |
| 1342 "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
|
1343 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1344 ;; 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
|
1345 |
| 276 | 1346 (or (bolp) |
| 1347 (beginning-of-line nil)) | |
| 1348 (let ((here (point))) | |
| 1349 (prog2 | |
| 1350 (end-of-line) | |
| 1351 (buffer-substring here (point)) | |
| 1352 (goto-char here)))) | |
| 1353 | |
| 1354 (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
|
1355 "Format THE-RECORD and display it in the current buffer." |
| 276 | 1356 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1357 ;; Split the-record. |
| 276 | 1358 (let (the-result |
| 1359 (start-pos 0) | |
| 1360 found-pos | |
| 1361 (field-sep-length (length forms-field-sep))) | |
| 1362 (if forms-multi-line | |
| 1363 (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
|
1364 ;; Add an extra separator (makes splitting easy). |
| 276 | 1365 (setq the-record (concat the-record forms-field-sep)) |
| 1366 (while (setq found-pos (string-match forms-field-sep the-record start-pos)) | |
| 1367 (let ((ent (substring the-record start-pos found-pos))) | |
| 1368 (setq the-result | |
| 1369 (append the-result (list ent))) | |
| 1370 (setq start-pos (+ field-sep-length found-pos)))) | |
| 1371 (setq forms--the-record-list the-result)) | |
| 1372 | |
| 1373 (setq buffer-read-only nil) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1374 (if forms-use-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1375 (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1376 (set-text-properties (point-min) (point-max) nil))) |
| 276 | 1377 (erase-buffer) |
| 1378 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1379 ;; Verify the number of fields, extend forms--the-record-list if needed. |
| 276 | 1380 (if (= (length forms--the-record-list) forms-number-of-fields) |
| 1381 nil | |
| 1382 (beep) | |
| 4790 | 1383 (message "Warning: this record has %d fields instead of %d" |
| 276 | 1384 (length forms--the-record-list) forms-number-of-fields) |
| 1385 (if (< (length forms--the-record-list) forms-number-of-fields) | |
| 1386 (setq forms--the-record-list | |
| 1387 (append forms--the-record-list | |
| 1388 (make-list | |
| 1389 (- forms-number-of-fields | |
| 1390 (length forms--the-record-list)) | |
| 1391 ""))))) | |
| 1392 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1393 ;; Call the formatter function. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1394 (setq forms-fields (append (list nil) forms--the-record-list nil)) |
| 276 | 1395 (funcall forms--format forms--the-record-list) |
| 1396 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1397 ;; Prepare. |
| 276 | 1398 (goto-char (point-min)) |
| 1399 (set-buffer-modified-p nil) | |
| 1400 (setq buffer-read-only forms-read-only) | |
| 1401 (setq mode-line-process | |
| 1402 (concat " " forms--current-record "/" forms--total-records))) | |
| 1403 | |
| 1404 (defun forms--parse-form () | |
| 1405 "Parse contents of form into list of strings." | |
| 1406 ;; The contents of the form are parsed, and a new list of strings | |
| 1407 ;; is constructed. | |
| 1408 ;; 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
|
1409 ;; constructed, which is updated with the new contents. Therefore |
| 276 | 1410 ;; fields which were not in the form are not modified. |
| 1411 ;; Finally, the vector is transformed into a list for further processing. | |
| 1412 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1413 (let (forms--recordv) |
| 276 | 1414 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1415 ;; Build the vector. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1416 (setq forms--recordv (vconcat forms--the-record-list)) |
| 276 | 1417 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1418 ;; Parse the form and update the vector. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1419 (let ((forms--dynamic-text forms--dynamic-text)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1420 (funcall forms--parser)) |
| 276 | 1421 |
| 4790 | 1422 (if forms-modified-record-filter |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1423 ;; 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
|
1424 ;; 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
|
1425 (let ((the-fields (vconcat [nil] forms--recordv))) |
| 4790 | 1426 (setq the-fields (funcall forms-modified-record-filter the-fields)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1427 (cdr (append the-fields nil))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1428 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1429 ;; Transform to a list and return. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1430 (append forms--recordv nil)))) |
| 276 | 1431 |
| 1432 (defun forms--update () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1433 "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
|
1434 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
|
1435 |
| 276 | 1436 (if forms-read-only |
| 1437 (progn | |
| 1438 (message "Read-only buffer!") | |
| 1439 (beep)) | |
| 1440 | |
| 1441 (let (the-record) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1442 ;; Build new record. |
| 276 | 1443 (setq forms--the-record-list (forms--parse-form)) |
| 1444 (setq the-record | |
| 1445 (mapconcat 'identity forms--the-record-list forms-field-sep)) | |
| 1446 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1447 (if (string-match (regexp-quote forms-field-sep) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1448 (mapconcat 'identity forms--the-record-list "")) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1449 (error "Field separator occurs in record - update refused!")) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1450 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1451 ;; Handle multi-line fields, if allowed. |
| 276 | 1452 (if forms-multi-line |
| 1453 (forms--trans the-record "\n" forms-multi-line)) | |
| 1454 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1455 ;; A final sanity check before updating. |
| 276 | 1456 (if (string-match "\n" the-record) |
| 1457 (progn | |
| 1458 (message "Multi-line fields in this record - update refused!") | |
| 1459 (beep)) | |
| 1460 | |
| 1461 (save-excursion | |
| 1462 (set-buffer forms--file-buffer) | |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1463 ;; Use delete-region instead of kill-region, to avoid |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1464 ;; adding junk to the kill-ring. |
|
8352
9e9987dda110
(forms--update): Undo change made mistakenly.
Richard M. Stallman <rms@gnu.org>
parents:
8344
diff
changeset
|
1465 (delete-region (save-excursion (beginning-of-line) (point)) |
|
9e9987dda110
(forms--update): Undo change made mistakenly.
Richard M. Stallman <rms@gnu.org>
parents:
8344
diff
changeset
|
1466 (save-excursion (end-of-line) (point))) |
| 276 | 1467 (insert the-record) |
| 1468 (beginning-of-line)))))) | |
| 1469 | |
| 1470 (defun forms--checkmod () | |
| 1471 "Check if this form has been modified, and call forms--update if so." | |
| 1472 (if (buffer-modified-p nil) | |
| 1473 (let ((here (point))) | |
| 1474 (forms--update) | |
| 1475 (set-buffer-modified-p nil) | |
| 1476 (goto-char here)))) | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1477 |
| 276 | 1478 ;;; Start and exit |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1479 |
|
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1480 ;;;###autoload |
| 276 | 1481 (defun forms-find-file (fn) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1482 "Visit a file in Forms mode." |
| 276 | 1483 (interactive "fForms file: ") |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1484 (let ((enable-local-eval t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1485 (enable-local-variables t)) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1486 (find-file-read-only fn) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1487 (or forms--mode-setup (forms-mode t)))) |
| 276 | 1488 |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1489 ;;;###autoload |
| 276 | 1490 (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
|
1491 "Visit a file in Forms mode in other window." |
| 276 | 1492 (interactive "fFbrowse file in other window: ") |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1493 (let ((enable-local-eval t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1494 (enable-local-variables t)) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1495 (find-file-other-window fn) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1496 (or forms--mode-setup (forms-mode t)))) |
| 276 | 1497 |
| 1498 (defun forms-exit (query) | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1499 "Normal exit from Forms mode. Modified buffers are saved." |
| 276 | 1500 (interactive "P") |
| 1501 (forms--exit query t)) | |
| 1502 | |
| 1503 (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
|
1504 "Exit from Forms mode without saving buffers." |
| 276 | 1505 (interactive "P") |
| 1506 (forms--exit query nil)) | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1507 |
| 276 | 1508 ;;; Navigating commands |
| 1509 | |
| 1510 (defun forms-next-record (arg) | |
| 1511 "Advance to the ARGth following record." | |
| 1512 (interactive "P") | |
| 1513 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t)) | |
| 1514 | |
| 1515 (defun forms-prev-record (arg) | |
| 1516 "Advance to the ARGth previous record." | |
| 1517 (interactive "P") | |
| 1518 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t)) | |
| 1519 | |
| 1520 (defun forms-jump-record (arg &optional relative) | |
| 1521 "Jump to a random record." | |
| 1522 (interactive "NRecord number: ") | |
| 1523 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1524 ;; Verify that the record number is within range. |
| 276 | 1525 (if (or (> arg forms--total-records) |
| 1526 (<= arg 0)) | |
| 1527 (progn | |
| 1528 (beep) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1529 ;; Don't give the message if just paging. |
| 276 | 1530 (if (not relative) |
| 1531 (message "Record number %d out of range 1..%d" | |
| 1532 arg forms--total-records)) | |
| 1533 ) | |
| 1534 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1535 ;; Flush. |
| 276 | 1536 (forms--checkmod) |
| 1537 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1538 ;; Calculate displacement. |
| 276 | 1539 (let ((disp (- arg forms--current-record)) |
| 1540 (cur forms--current-record)) | |
| 1541 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1542 ;; `forms--show-record' needs it now. |
| 276 | 1543 (setq forms--current-record arg) |
| 1544 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1545 ;; Get the record and show it. |
| 276 | 1546 (forms--show-record |
| 1547 (save-excursion | |
| 1548 (set-buffer forms--file-buffer) | |
| 1549 (beginning-of-line) | |
| 1550 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1551 ;; Move, and adjust the amount if needed (shouldn't happen). |
| 276 | 1552 (if relative |
| 1553 (if (zerop disp) | |
| 1554 nil | |
| 1555 (setq cur (+ cur disp (- (forward-line disp))))) | |
| 1556 (setq cur (+ cur disp (- (goto-line arg))))) | |
| 1557 | |
| 1558 (forms--get-record))) | |
| 1559 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1560 ;; This shouldn't happen. |
| 276 | 1561 (if (/= forms--current-record cur) |
| 1562 (progn | |
| 1563 (setq forms--current-record cur) | |
| 1564 (beep) | |
| 4790 | 1565 (message "Stuck at record %d" cur)))))) |
| 276 | 1566 |
| 1567 (defun forms-first-record () | |
| 1568 "Jump to first record." | |
| 1569 (interactive) | |
| 1570 (forms-jump-record 1)) | |
| 1571 | |
| 1572 (defun forms-last-record () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1573 "Jump to last record. |
|
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1574 As a side effect: re-calculates the number of records in the data file." |
| 276 | 1575 (interactive) |
| 1576 (let | |
| 1577 ((numrec | |
| 1578 (save-excursion | |
| 1579 (set-buffer forms--file-buffer) | |
| 1580 (count-lines (point-min) (point-max))))) | |
| 1581 (if (= numrec forms--total-records) | |
| 1582 nil | |
| 1583 (beep) | |
| 1584 (setq forms--total-records numrec) | |
| 4790 | 1585 (message "Warning: number of records changed to %d" forms--total-records))) |
| 276 | 1586 (forms-jump-record forms--total-records)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1587 |
| 276 | 1588 ;;; Other commands |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1589 |
| 4790 | 1590 (defun forms-toggle-read-only (arg) |
| 1591 "Toggles read-only mode of a forms mode buffer. | |
| 1592 With an argument, enables read-only mode if the argument is positive. | |
| 1593 Otherwise enables edit mode if the visited file is writeable." | |
| 1594 | |
| 1595 (interactive "P") | |
| 1596 | |
| 1597 (if (if arg | |
| 1598 ;; Negative arg means switch it off. | |
| 1599 (<= (prefix-numeric-value arg) 0) | |
| 1600 ;; No arg means toggle. | |
| 1601 forms-read-only) | |
| 276 | 1602 |
| 4790 | 1603 ;; Enable edit mode, if possible. |
| 1604 (let ((ro forms-read-only)) | |
| 1605 (if (save-excursion | |
| 1606 (set-buffer forms--file-buffer) | |
| 1607 buffer-read-only) | |
| 1608 (progn | |
| 1609 (setq forms-read-only t) | |
| 1610 (message "No write access to \"%s\"" forms-file) | |
| 1611 (beep)) | |
| 1612 (setq forms-read-only nil)) | |
| 1613 (if (equal ro forms-read-only) | |
| 1614 nil | |
| 1615 (forms-mode))) | |
| 1616 | |
| 1617 ;; Enable view mode. | |
| 1618 (if forms-read-only | |
| 276 | 1619 nil |
| 4790 | 1620 (forms--checkmod) ; sync |
| 1621 (setq forms-read-only t) | |
| 276 | 1622 (forms-mode)))) |
| 1623 | |
| 1624 ;; Sample: | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1625 ;; (defun my-new-record-filter (the-fields) |
| 276 | 1626 ;; ;; numbers are relative to 1 |
| 1627 ;; (aset the-fields 4 (current-time-string)) | |
| 1628 ;; (aset the-fields 6 (user-login-name)) | |
| 1629 ;; the-list) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1630 ;; (setq forms-new-record-filter 'my-new-record-filter) |
| 276 | 1631 |
| 1632 (defun forms-insert-record (arg) | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1633 "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
|
1634 With ARG: store the record after the current one. |
| 4790 | 1635 If `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
|
1636 it is called to fill (some of) the fields with default values." |
| 276 | 1637 |
| 1638 (interactive "P") | |
| 1639 | |
| 4790 | 1640 (if forms-read-only |
| 1641 (error "")) | |
| 1642 | |
| 276 | 1643 (let ((ln (if arg (1+ forms--current-record) forms--current-record)) |
| 1644 the-list the-record) | |
| 1645 | |
| 1646 (forms--checkmod) | |
| 4790 | 1647 (if forms-new-record-filter |
| 276 | 1648 ;; As a service to the user, we add a zeroth element so she |
| 1649 ;; can use the same indices as in the forms definition. | |
| 1650 (let ((the-fields (make-vector (1+ forms-number-of-fields) ""))) | |
| 4790 | 1651 (setq the-fields (funcall forms-new-record-filter the-fields)) |
| 276 | 1652 (setq the-list (cdr (append the-fields nil)))) |
| 1653 (setq the-list (make-list forms-number-of-fields ""))) | |
| 1654 | |
| 1655 (setq the-record | |
| 1656 (mapconcat | |
| 1657 'identity | |
| 1658 the-list | |
| 1659 forms-field-sep)) | |
| 1660 | |
| 1661 (save-excursion | |
| 1662 (set-buffer forms--file-buffer) | |
| 1663 (goto-line ln) | |
| 1664 (open-line 1) | |
| 1665 (insert the-record) | |
| 1666 (beginning-of-line)) | |
| 1667 | |
| 1668 (setq forms--current-record ln)) | |
| 1669 | |
| 1670 (setq forms--total-records (1+ forms--total-records)) | |
| 1671 (forms-jump-record forms--current-record)) | |
| 1672 | |
| 1673 (defun forms-delete-record (arg) | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1674 "Deletes a record. With a prefix argument: don't ask." |
| 276 | 1675 (interactive "P") |
| 4790 | 1676 |
| 1677 (if forms-read-only | |
| 1678 (error "")) | |
| 1679 | |
| 276 | 1680 (forms--checkmod) |
| 1681 (if (or arg | |
| 1682 (y-or-n-p "Really delete this record? ")) | |
| 1683 (let ((ln forms--current-record)) | |
| 1684 (save-excursion | |
| 1685 (set-buffer forms--file-buffer) | |
| 1686 (goto-line ln) | |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1687 ;; Use delete-region instead of kill-region, to avoid |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1688 ;; adding junk to the kill-ring. |
|
8272
8d790a29a13a
(forms-delete-record): Handle deletion of last line
Richard M. Stallman <rms@gnu.org>
parents:
7863
diff
changeset
|
1689 (delete-region (progn (beginning-of-line) (point)) |
|
8d790a29a13a
(forms-delete-record): Handle deletion of last line
Richard M. Stallman <rms@gnu.org>
parents:
7863
diff
changeset
|
1690 (progn (beginning-of-line 2) (point)))) |
| 276 | 1691 (setq forms--total-records (1- forms--total-records)) |
| 1692 (if (> forms--current-record forms--total-records) | |
| 1693 (setq forms--current-record forms--total-records)) | |
| 1694 (forms-jump-record forms--current-record))) | |
| 1695 (message "")) | |
| 1696 | |
| 1697 (defun forms-search (regexp) | |
| 1698 "Search REGEXP in file buffer." | |
| 1699 (interactive | |
| 1700 (list (read-string (concat "Search for" | |
| 1701 (if forms--search-regexp | |
| 1702 (concat " (" | |
| 1703 forms--search-regexp | |
| 1704 ")")) | |
| 1705 ": ")))) | |
| 1706 (if (equal "" regexp) | |
| 1707 (setq regexp forms--search-regexp)) | |
| 1708 (forms--checkmod) | |
| 1709 | |
| 1710 (let (the-line the-record here | |
| 1711 (fld-sep forms-field-sep)) | |
| 1712 (if (save-excursion | |
| 1713 (set-buffer forms--file-buffer) | |
| 1714 (setq here (point)) | |
| 1715 (end-of-line) | |
| 1716 (if (null (re-search-forward regexp nil t)) | |
| 1717 (progn | |
| 1718 (goto-char here) | |
| 1719 (message (concat "\"" regexp "\" not found.")) | |
| 1720 nil) | |
| 1721 (setq the-record (forms--get-record)) | |
| 1722 (setq the-line (1+ (count-lines (point-min) (point)))))) | |
| 1723 (progn | |
| 1724 (setq forms--current-record the-line) | |
| 1725 (forms--show-record the-record) | |
| 1726 (re-search-forward regexp nil t)))) | |
| 1727 (setq forms--search-regexp regexp)) | |
| 1728 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1729 (defun forms-save-buffer (&optional args) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1730 "Forms mode replacement for save-buffer. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1731 It saves the data buffer instead of the forms buffer. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1732 Calls `forms-write-file-filter' before writing out the data." |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1733 (interactive "p") |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1734 (forms--checkmod) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1735 (let ((read-file-filter forms-read-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1736 (save-excursion |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1737 (set-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1738 (let ((inhibit-read-only t)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1739 (save-buffer args) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1740 (if read-file-filter |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1741 (run-hooks 'read-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1742 (set-buffer-modified-p nil)))) |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1743 t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1744 |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1745 (defun forms--revert-buffer (&optional arg noconfirm) |
| 276 | 1746 "Reverts current form to un-modified." |
| 1747 (interactive "P") | |
| 1748 (if (or noconfirm | |
| 1749 (yes-or-no-p "Revert form to unmodified? ")) | |
| 1750 (progn | |
| 1751 (set-buffer-modified-p nil) | |
| 1752 (forms-jump-record forms--current-record)))) | |
| 1753 | |
| 1754 (defun forms-next-field (arg) | |
| 1755 "Jump to ARG-th next field." | |
| 1756 (interactive "p") | |
| 1757 | |
| 1758 (let ((i 0) | |
| 1759 (here (point)) | |
| 1760 there | |
| 1761 (cnt 0)) | |
| 1762 | |
| 1763 (if (zerop arg) | |
| 1764 (setq cnt 1) | |
| 1765 (setq cnt (+ cnt arg))) | |
| 1766 | |
| 1767 (if (catch 'done | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1768 (while (< i (length forms--markers)) |
| 276 | 1769 (if (or (null (setq there (aref forms--markers i))) |
| 1770 (<= there here)) | |
| 1771 nil | |
| 1772 (if (<= (setq cnt (1- cnt)) 0) | |
| 1773 (progn | |
| 1774 (goto-char there) | |
| 1775 (throw 'done t)))) | |
| 1776 (setq i (1+ i)))) | |
| 1777 nil | |
| 1778 (goto-char (aref forms--markers 0))))) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1779 |
| 4790 | 1780 (defun forms-prev-field (arg) |
| 1781 "Jump to ARG-th previous field." | |
| 1782 (interactive "p") | |
| 1783 | |
| 1784 (let ((i (length forms--markers)) | |
| 1785 (here (point)) | |
| 1786 there | |
| 1787 (cnt 0)) | |
| 1788 | |
| 1789 (if (zerop arg) | |
| 1790 (setq cnt 1) | |
| 1791 (setq cnt (+ cnt arg))) | |
| 1792 | |
| 1793 (if (catch 'done | |
| 1794 (while (> i 0) | |
| 1795 (setq i ( 1- i)) | |
| 1796 (if (or (null (setq there (aref forms--markers i))) | |
| 1797 (>= there here)) | |
| 1798 nil | |
| 1799 (if (<= (setq cnt (1- cnt)) 0) | |
| 1800 (progn | |
| 1801 (goto-char there) | |
| 1802 (throw 'done t)))))) | |
| 1803 nil | |
| 1804 (goto-char (aref forms--markers (1- (length forms--markers))))))) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1805 ;;; |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1806 ;;; Special service |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1807 ;;; |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1808 (defun forms-enumerate (the-fields) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1809 "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
|
1810 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
|
1811 It returns the higest number. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1812 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1813 Usage: (setq forms-number-of-fields |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1814 (forms-enumerate |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1815 '(field1 field2 field2 ...)))" |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1816 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1817 (let ((the-index 0)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1818 (while the-fields |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1819 (setq the-index (1+ the-index)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1820 (let ((el (car-safe the-fields))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1821 (setq the-fields (cdr-safe the-fields)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1822 (set el the-index))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1823 the-index)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1824 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1825 ;;; Debugging |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1826 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1827 (defvar forms--debug nil |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1828 "*Enables forms-mode debugging if not nil.") |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1829 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1830 (defun forms--debug (&rest args) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1831 "Internal debugging routine." |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1832 (if forms--debug |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1833 (let ((ret nil)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1834 (while args |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1835 (let ((el (car-safe args))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1836 (setq args (cdr-safe args)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1837 (if (stringp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1838 (setq ret (concat ret el)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1839 (setq ret (concat ret (prin1-to-string el) " = ")) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1840 (if (boundp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1841 (let ((vel (eval el))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1842 (setq ret (concat ret (prin1-to-string vel) "\n"))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1843 (setq ret (concat ret "<unbound>" "\n"))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1844 (if (fboundp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1845 (setq ret (concat ret (prin1-to-string (symbol-function el)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1846 "\n")))))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1847 (save-excursion |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1848 (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
|
1849 (if (zerop (buffer-size)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1850 (emacs-lisp-mode)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1851 (goto-char (point-max)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1852 (insert ret))))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1853 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1854 ;;; forms.el ends here. |
