Mercurial > emacs
annotate lisp/forms.el @ 112453:06719a229a46 default tip
* calc/calc.el (calc-default-power-reference-level)
(calc-default-field-reference-level): New variables.
* calc/calc-units.el (math-standard-units): Add dB and Np.
(math-logunits): New variable.
(math-extract-logunits, math-logcombine, calcFunc-luplus)
(calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
(calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New
functions.
(math-find-base-units-rec): Add entry for ln(10).
* calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
(calc-ul-prefix-help): New function.
* calc/calc-ext.el (calc-init-extensions): Autoload new units
functions. Add keybindings for new units functions.
| author | Jay Belanger <jay.p.belanger@gmail.com> |
|---|---|
| date | Sun, 23 Jan 2011 23:08:04 -0600 |
| parents | ef719132ddfa |
| children |
| rev | line source |
|---|---|
| 13337 | 1 ;;; forms.el --- Forms mode: edit a file as a form to fill in |
| 2 | |
| 74442 | 3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997, 2001, 2002, 2003, |
|
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
5 |
| 13317 | 6 ;; Author: Johan Vromans <jvromans@squirrel.nl> |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
7 |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
| 276 | 9 |
|
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94359
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
|
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94359
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
|
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94359
diff
changeset
|
13 ;; (at your option) any later version. |
| 276 | 14 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
15 ;; 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
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
18 ;; GNU General Public License for more details. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
19 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
|
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94359
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
|
3697
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 |
| 94359 | 25 ;; Visit a file using a form. See forms-d2.el for examples. |
| 14169 | 26 ;; |
| 27 ;; === Naming conventions | |
| 28 ;; | |
| 29 ;; The names of all variables and functions start with 'forms-'. | |
| 30 ;; Names which start with 'forms--' are intended for internal use, and | |
| 31 ;; should *NOT* be used from the outside. | |
| 32 ;; | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
33 ;; All variables are buffer-local, to enable multiple forms visits |
| 14169 | 34 ;; simultaneously. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
35 ;; Variable `forms--mode-setup' is local to *ALL* buffers, for it |
| 14169 | 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 | |
| 41 ;; of records each containing a number of fields. The records are | |
| 42 ;; separated by a newline, the fields are separated by a user-defined | |
| 43 ;; field separator (default: TAB). | |
| 44 ;; When shown, a record is transferred to an Emacs buffer and | |
| 45 ;; presented using a user-defined form. One record is shown at a | |
| 46 ;; time. | |
| 47 ;; | |
| 48 ;; Forms mode is a composite mode. It involves two files, and two | |
| 49 ;; buffers. | |
| 50 ;; The first file, called the control file, defines the name of the | |
| 51 ;; data file and the forms format. This file buffer will be used to | |
| 52 ;; present the forms. | |
| 53 ;; The second file holds the actual data. The buffer of this file | |
| 54 ;; will be buried, for it is never accessed directly. | |
| 55 ;; | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
56 ;; Forms mode is invoked using M-x `forms-find-file' control-file. |
| 14169 | 57 ;; Alternatively `forms-find-file-other-window' can be used. |
| 58 ;; | |
| 59 ;; You may also visit the control file, and switch to forms mode by hand | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
60 ;; with M-x `forms-mode'. |
| 14169 | 61 ;; |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
62 ;; Automatic mode switching is supported if you specify |
| 14169 | 63 ;; "-*- forms -*-" in the first line of the control file. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
64 ;; |
|
62459
b89461946700
Replace `eval-current-buffer' by `eval-buffer'.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
65 ;; The control file is visited, evaluated using `eval-buffer', |
| 14169 | 66 ;; and should set at least the following variables: |
| 67 ;; | |
| 68 ;; forms-file [string] | |
| 69 ;; The name of the data file. | |
| 70 ;; | |
| 71 ;; forms-number-of-fields [integer] | |
| 72 ;; The number of fields in each record. | |
| 73 ;; | |
| 74 ;; forms-format-list [list] | |
| 75 ;; Formatting instructions. | |
| 76 ;; | |
| 77 ;; `forms-format-list' should be a list, each element containing | |
| 78 ;; | |
| 79 ;; - a string, e.g. "hello". The string is inserted in the forms | |
| 80 ;; "as is". | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
81 ;; |
| 14169 | 82 ;; - an integer, denoting a field number. |
| 83 ;; The contents of this field are inserted at this point. | |
| 84 ;; Fields are numbered starting with number one. | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
85 ;; |
| 14169 | 86 ;; - a function call, e.g. (insert "text"). |
| 87 ;; This function call is dynamically evaluated and should return a | |
| 88 ;; string. It should *NOT* have side-effects on the forms being | |
| 89 ;; constructed. The current fields are available to the function | |
| 90 ;; in the variable `forms-fields', they should *NOT* be modified. | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
91 ;; |
| 14169 | 92 ;; - a lisp symbol, that must evaluate to one of the above. |
| 93 ;; | |
| 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 | |
| 98 ;; fields in the data file. It may be a string. | |
| 99 ;; | |
| 100 ;; forms-read-only [bool, default nil] | |
| 101 ;; Non-nil means that the data file is visited | |
| 102 ;; read-only (view mode) as opposed to edit mode. | |
| 103 ;; If no write access to the data file is | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
104 ;; possible, view mode is enforced. |
| 14169 | 105 ;; |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
106 ;; forms-check-number-of-fields [bool, default t] |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
107 ;; If non-nil, a warning will be issued whenever |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
108 ;; a record is found that does not have the number |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
109 ;; of fields specified by `forms-number-of-fields'. |
| 14169 | 110 ;; |
| 111 ;; forms-multi-line [string, default "^K"] | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
112 ;; If non-null, the records of the data file may |
| 14169 | 113 ;; contain fields that can span multiple lines in |
| 114 ;; the form. | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
115 ;; This variable denotes the separator string |
| 14169 | 116 ;; to be used for this purpose. Upon display, all |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
117 ;; occurrences of this string are translated |
| 14169 | 118 ;; to newlines. Upon storage they are translated |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
119 ;; back to the separator string. |
| 14169 | 120 ;; |
| 121 ;; forms-forms-scroll [bool, default nil] | |
| 122 ;; Non-nil means: rebind locally the commands that | |
| 123 ;; perform `scroll-up' or `scroll-down' to use | |
| 124 ;; `forms-next-field' resp. `forms-prev-field'. | |
| 125 ;; | |
| 126 ;; forms-forms-jump [bool, default nil] | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
127 ;; Non-nil means: rebind locally the commands |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
128 ;; `beginning-of-buffer' and `end-of-buffer' to |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
129 ;; perform, respectively, `forms-first-record' and |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
130 ;; `forms-last-record' instead. |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
131 ;; |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
132 ;; forms-insert-after [bool, default nil] |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
133 ;; Non-nil means: insertions of new records go after |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
134 ;; current record, also initial position is at the |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
135 ;; last record. The default is to insert before the |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
136 ;; current record and the initial position is at the |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
137 ;; first record. |
| 14169 | 138 ;; |
| 139 ;; forms-read-file-filter [symbol, default nil] | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
140 ;; If not nil: this should be the name of a |
| 14169 | 141 ;; function that is called after the forms data file |
| 142 ;; has been read. It can be used to transform | |
| 143 ;; the contents of the file into a format more suitable | |
| 144 ;; for forms-mode processing. | |
| 145 ;; | |
| 146 ;; forms-write-file-filter [symbol, default nil] | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
147 ;; If not nil: this should be the name of a |
| 14169 | 148 ;; function that is called before the forms data file |
| 149 ;; is written (saved) to disk. It can be used to undo | |
| 150 ;; the effects of `forms-read-file-filter', if any. | |
| 151 ;; | |
| 152 ;; forms-new-record-filter [symbol, default nil] | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
153 ;; If not nil: this should be the name of a |
| 14169 | 154 ;; function that is called when a new |
| 155 ;; record is created. It can be used to fill in | |
| 156 ;; the new record with default fields, for example. | |
| 157 ;; | |
| 158 ;; forms-modified-record-filter [symbol, default nil] | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
159 ;; If not nil: this should be the name of a |
| 14169 | 160 ;; function that is called when a record has |
| 161 ;; been modified. It is called after the fields | |
| 162 ;; are parsed. It can be used to register | |
| 163 ;; modification dates, for example. | |
| 164 ;; | |
| 165 ;; forms-use-text-properties [bool, see text for default] | |
| 166 ;; This variable controls if forms mode should use | |
| 167 ;; text properties to protect the form text from being | |
| 168 ;; modified (using text-property `read-only'). | |
| 169 ;; Also, the read-write fields are shown using a | |
| 170 ;; distinct face, if possible. | |
| 171 ;; As of emacs 19.29, the `intangible' text property | |
| 172 ;; is used to prevent moving into read-only fields. | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
173 ;; This variable defaults to t if running Emacs 19 or |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
174 ;; later with text properties. |
| 14169 | 175 ;; The default face to show read-write fields is |
| 176 ;; copied from face `region'. | |
| 177 ;; | |
| 178 ;; forms-ro-face [symbol, default 'default] | |
| 179 ;; This is the face that is used to show | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
180 ;; read-only text on the screen. If used, this |
| 14169 | 181 ;; variable should be set to a symbol that is a |
| 182 ;; valid face. | |
| 183 ;; E.g. | |
| 184 ;; (make-face 'my-face) | |
| 185 ;; (setq forms-ro-face 'my-face) | |
| 186 ;; | |
| 187 ;; forms-rw-face [symbol, default 'region] | |
| 188 ;; This is the face that is used to show | |
| 189 ;; read-write text on the screen. | |
| 190 ;; | |
| 191 ;; After evaluating the control file, its buffer is cleared and used | |
| 192 ;; for further processing. | |
| 193 ;; The data file (as designated by `forms-file') is visited in a buffer | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
194 ;; `forms--file-buffer' which normally will not be shown. |
| 14169 | 195 ;; Great malfunctioning may be expected if this file/buffer is modified |
| 196 ;; outside of this package while it is being visited! | |
| 197 ;; | |
| 198 ;; Normal operation is to transfer one line (record) from the data file, | |
| 199 ;; split it into fields (into `forms--the-record-list'), and display it | |
| 200 ;; using the specs in `forms-format-list'. | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
201 ;; A format routine `forms--format' is built upon startup to format |
| 14169 | 202 ;; the records according to `forms-format-list'. |
| 203 ;; | |
| 204 ;; When a form is changed the record is updated as soon as this form | |
| 205 ;; is left. The contents of the form are parsed using information | |
| 206 ;; obtained from `forms-format-list', and the fields which are | |
| 207 ;; deduced from the form are modified. Fields not shown on the forms | |
| 208 ;; retain their original values. The newly formed record then | |
| 209 ;; replaces the contents of the old record in `forms--file-buffer'. | |
| 210 ;; A parse routine `forms--parser' is built upon startup to parse | |
| 211 ;; the records. | |
| 212 ;; | |
| 213 ;; Two exit functions exist: `forms-exit' and `forms-exit-no-save'. | |
| 214 ;; `forms-exit' saves the data to the file, if modified. | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
215 ;; `forms-exit-no-save' does not. However, if `forms-exit-no-save' |
| 14169 | 216 ;; is executed and the file buffer has been modified, Emacs will ask |
| 217 ;; questions anyway. | |
| 218 ;; | |
| 219 ;; Other functions provided by forms mode are: | |
| 220 ;; | |
| 221 ;; paging (forward, backward) by record | |
| 222 ;; jumping (first, last, random number) | |
| 223 ;; searching | |
| 224 ;; creating and deleting records | |
| 225 ;; reverting the form (NOT the file buffer) | |
| 226 ;; switching edit <-> view mode v.v. | |
| 227 ;; jumping from field to field | |
| 228 ;; | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
229 ;; As a documented side-effect: jumping to the last record in the |
| 14169 | 230 ;; file (using forms-last-record) will adjust forms--total-records if |
| 231 ;; needed. | |
| 232 ;; | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
233 ;; The forms buffer can be in one of two modes: edit mode or view |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
234 ;; mode. View mode is a read-only mode, whereby you cannot modify the |
| 14169 | 235 ;; contents of the buffer. |
| 236 ;; | |
| 237 ;; Edit mode commands: | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
238 ;; |
| 14169 | 239 ;; TAB forms-next-field |
| 240 ;; \C-c TAB forms-next-field | |
| 241 ;; \C-c < forms-first-record | |
| 242 ;; \C-c > forms-last-record | |
| 243 ;; \C-c ? describe-mode | |
| 244 ;; \C-c \C-k forms-delete-record | |
| 245 ;; \C-c \C-q forms-toggle-read-only | |
| 246 ;; \C-c \C-o forms-insert-record | |
| 247 ;; \C-c \C-l forms-jump-record | |
| 248 ;; \C-c \C-n forms-next-record | |
| 249 ;; \C-c \C-p forms-prev-record | |
| 250 ;; \C-c \C-r forms-search-backward | |
| 251 ;; \C-c \C-s forms-search-forward | |
| 252 ;; \C-c \C-x forms-exit | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
253 ;; |
| 14169 | 254 ;; Read-only mode commands: |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
255 ;; |
| 14169 | 256 ;; SPC forms-next-record |
| 257 ;; DEL forms-prev-record | |
| 258 ;; ? describe-mode | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
259 ;; \C-q forms-toggle-read-only |
| 14169 | 260 ;; l forms-jump-record |
| 261 ;; n forms-next-record | |
| 262 ;; p forms-prev-record | |
| 263 ;; r forms-search-backward | |
| 264 ;; s forms-search-forward | |
| 265 ;; x forms-exit | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
266 ;; |
| 14169 | 267 ;; Of course, it is also possible to use the \C-c prefix to obtain the |
| 268 ;; same command keys as in edit mode. | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
269 ;; |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
270 ;; The following bindings are available, independent of the mode: |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
271 ;; |
| 14169 | 272 ;; [next] forms-next-record |
| 273 ;; [prior] forms-prev-record | |
| 274 ;; [begin] forms-first-record | |
| 275 ;; [end] forms-last-record | |
| 276 ;; [S-TAB] forms-prev-field | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
277 ;; [backtab] forms-prev-field |
| 14169 | 278 ;; |
| 279 ;; For convenience, TAB is always bound to `forms-next-field', so you | |
| 280 ;; don't need the C-c prefix for this command. | |
| 281 ;; | |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
282 ;; As mentioned above (see `forms-forms-scroll' and `forms-forms-jump'), |
| 14169 | 283 ;; the bindings of standard functions `scroll-up', `scroll-down', |
| 284 ;; `beginning-of-buffer' and `end-of-buffer' can be locally replaced with | |
| 285 ;; forms mode functions next/prev record and first/last | |
| 286 ;; record. | |
| 287 ;; | |
|
51282
933251fe83b1
(forms-mode): Use write-file-functions instead of local-write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
51160
diff
changeset
|
288 ;; `write-file-functions' is defined to save the actual data file |
| 14169 | 289 ;; instead of the buffer data, `revert-file-hook' is defined to |
| 290 ;; revert a forms to original. | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
291 |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
292 ;;; Code: |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
293 |
| 19429 | 294 (defgroup forms nil |
| 295 "Edit a file as a form to fill in." | |
| 296 :group 'data) | |
| 297 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
298 ;;; Global variables and constants: |
| 276 | 299 |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
300 (provide 'forms) ;;; official |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
301 (provide 'forms-mode) ;;; for compatibility |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
302 |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
303 (defcustom forms-mode-hook nil |
| 35968 | 304 "Hook run upon entering Forms mode." |
| 19429 | 305 :group 'forms |
| 35968 | 306 :type 'hook) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
307 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
308 ;;; Mandatory variables - must be set by evaluating the control file. |
| 276 | 309 |
| 310 (defvar forms-file nil | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
311 "Name of the file holding the data.") |
| 276 | 312 |
| 313 (defvar forms-format-list nil | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
314 "List of formatting specifications.") |
| 276 | 315 |
| 316 (defvar forms-number-of-fields nil | |
| 317 "Number of fields per record.") | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
318 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
319 ;;; Optional variables with default values. |
| 276 | 320 |
| 19429 | 321 (defcustom forms-check-number-of-fields t |
| 100171 | 322 "If non-nil, warn about records with wrong number of fields." |
| 19429 | 323 :group 'forms |
| 324 :type 'boolean) | |
|
12847
61961ca01260
(forms-check-number-of-fields): New vbl.
Richard M. Stallman <rms@gnu.org>
parents:
12508
diff
changeset
|
325 |
| 276 | 326 (defvar forms-field-sep "\t" |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
327 "Field separator character (default TAB).") |
| 276 | 328 |
|
19565
f998e80e4804
(forms-read-only): Un-customize, and doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19429
diff
changeset
|
329 (defvar forms-read-only nil |
|
f998e80e4804
(forms-read-only): Un-customize, and doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19429
diff
changeset
|
330 "Non-nil means: visit the file in view (read-only) mode. |
| 19586 | 331 This is set automatically if the file permissions don't let you write it.") |
| 276 | 332 |
| 19429 | 333 (defvar forms-multi-line "\C-k" "\ |
| 334 If not nil: use this character to separate multi-line fields (default C-k).") | |
| 276 | 335 |
| 19429 | 336 (defcustom forms-forms-scroll nil |
| 100171 | 337 "Non-nil means replace scroll-up/down commands in Forms mode. |
| 19429 | 338 The replacement commands performs forms-next/prev-record." |
| 339 :group 'forms | |
| 340 :type 'boolean) | |
| 276 | 341 |
| 19429 | 342 (defcustom forms-forms-jump nil |
| 100171 | 343 "Non-nil means redefine beginning/end-of-buffer in Forms mode. |
| 19429 | 344 The replacement commands performs forms-first/last-record." |
| 345 :group 'forms | |
| 346 :type 'boolean) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
347 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
348 (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
|
349 "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
|
350 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
|
351 suitable for forms processing.") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
352 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
353 (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
|
354 "The name of a function that is called before writing the data file. |
| 19429 | 355 This can be used to undo the effects of `form-read-file-hook'.") |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
356 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
357 (defvar forms-new-record-filter nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
358 "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
|
359 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
360 (defvar forms-modified-record-filter nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
361 "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
|
362 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
363 (defvar forms-fields nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
364 "List with fields of the current forms. First field has number 1. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
365 This variable is for use by the filter routines only. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
366 The contents may NOT be modified.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
367 |
| 19429 | 368 (defcustom forms-use-text-properties t |
| 100171 | 369 "Non-nil means: use text properties. |
| 19429 | 370 Defaults to t if this Emacs is capable of handling text properties." |
| 371 :group 'forms | |
| 372 :type 'boolean) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
373 |
| 19429 | 374 (defcustom forms-insert-after nil |
| 100171 | 375 "Non-nil means: inserts of new records go after current record. |
| 19429 | 376 Also, initial position is at last record." |
| 377 :group 'forms | |
| 378 :type 'boolean) | |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
379 |
| 19429 | 380 (defcustom forms-ro-face 'default |
| 381 "The face (a symbol) that is used to display read-only text on the screen." | |
| 382 :group 'forms | |
| 383 :type 'face) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
384 |
| 19429 | 385 (defcustom forms-rw-face 'region |
| 386 "The face (a symbol) that is used to display read-write text on the screen." | |
| 387 :group 'forms | |
| 388 :type 'face) | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
389 |
| 276 | 390 ;;; Internal variables. |
| 391 | |
| 392 (defvar forms--file-buffer nil | |
| 393 "Buffer which holds the file data") | |
| 394 | |
| 395 (defvar forms--total-records 0 | |
| 396 "Total number of records in the data file.") | |
| 397 | |
| 398 (defvar forms--current-record 0 | |
| 399 "Number of the record currently on the screen.") | |
| 400 | |
| 4790 | 401 (defvar forms-mode-map nil |
| 276 | 402 "Keymap for form buffer.") |
| 4790 | 403 (defvar forms-mode-ro-map nil |
| 404 "Keymap for form buffer in view mode.") | |
| 405 (defvar forms-mode-edit-map nil | |
| 406 "Keymap for form buffer in edit mode.") | |
| 276 | 407 |
| 408 (defvar forms--markers nil | |
| 409 "Field markers in the screen.") | |
| 410 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
411 (defvar forms--dyntexts nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
412 "Dynamic texts (resulting from function calls) on the screen.") |
| 276 | 413 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
414 (defvar forms--the-record-list nil |
| 276 | 415 "List of strings of the current record, as parsed from the file.") |
| 416 | |
| 417 (defvar forms--search-regexp nil | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
418 "Last regexp used by forms-search functions.") |
| 276 | 419 |
| 420 (defvar forms--format nil | |
| 421 "Formatting routine.") | |
| 422 | |
| 423 (defvar forms--parser nil | |
| 424 "Forms parser routine.") | |
| 425 | |
| 426 (defvar forms--mode-setup nil | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
427 "To keep track of forms-mode being set-up.") |
| 276 | 428 (make-variable-buffer-local 'forms--mode-setup) |
| 429 | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
430 (defvar forms--dynamic-text nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
431 "Array that holds dynamic texts to insert between fields.") |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
432 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
433 (defvar forms--elements nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
434 "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
|
435 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
436 (defvar forms--ro-face nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
437 "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
|
438 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
439 (defvar forms--rw-face nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
440 "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
|
441 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
442 ;;;###autoload |
| 276 | 443 (defun forms-mode (&optional primary) |
| 444 "Major mode to visit files in a field-structured manner using a form. | |
| 445 | |
| 4790 | 446 Commands: Equivalent keys in read-only mode: |
| 447 TAB forms-next-field TAB | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
448 C-c TAB forms-next-field |
|
22770
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
449 C-c < forms-first-record < |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
450 C-c > forms-last-record > |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
451 C-c ? describe-mode ? |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
452 C-c C-k forms-delete-record |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
453 C-c C-q forms-toggle-read-only q |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
454 C-c C-o forms-insert-record |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
455 C-c C-l forms-jump-record l |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
456 C-c C-n forms-next-record n |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
457 C-c C-p forms-prev-record p |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
458 C-c C-r forms-search-reverse r |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
459 C-c C-s forms-search-forward s |
|
4edbca935160
(forms-mode): Doc fix (remove slashes from keybindings).
Stephen Eglen <stephen@gnu.org>
parents:
19586
diff
changeset
|
460 C-c C-x forms-exit x |
| 4790 | 461 " |
| 462 (interactive) | |
| 276 | 463 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
464 ;; 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
|
465 ;; 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
|
466 ;; 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
|
467 ;; 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
|
468 ;; 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
|
469 ;; `find-file'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
470 ;; 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
|
471 ;; 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
|
472 ;; placed all calls in this function. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
473 |
| 276 | 474 ;; Primary set-up: evaluate buffer and check if the mandatory |
| 475 ;; variables have been set. | |
| 476 (if (or primary (not forms--mode-setup)) | |
| 477 (progn | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
478 ;;(message "forms: setting up...") |
| 276 | 479 (kill-all-local-variables) |
| 480 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
481 ;; Make mandatory variables. |
| 276 | 482 (make-local-variable 'forms-file) |
| 483 (make-local-variable 'forms-number-of-fields) | |
| 484 (make-local-variable 'forms-format-list) | |
| 485 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
486 ;; Make optional variables. |
| 276 | 487 (make-local-variable 'forms-field-sep) |
| 488 (make-local-variable 'forms-read-only) | |
| 489 (make-local-variable 'forms-multi-line) | |
| 490 (make-local-variable 'forms-forms-scroll) | |
| 491 (make-local-variable 'forms-forms-jump) | |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
492 (make-local-variable 'forms-insert-after) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
493 (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
|
494 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
495 ;; Filter functions. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
496 (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
|
497 (make-local-variable 'forms-write-file-filter) |
| 4790 | 498 (make-local-variable 'forms-new-record-filter) |
| 499 (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
|
500 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
501 ;; 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
|
502 (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
|
503 (setq forms-write-file-filter nil) |
| 4790 | 504 (setq forms-new-record-filter nil) |
| 505 (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
|
506 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
507 ;; If running Emacs 19 under X, setup faces to show read-only and |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
508 ;; read-write fields. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
509 (if (fboundp 'make-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
510 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
511 (make-local-variable 'forms-ro-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
512 (make-local-variable 'forms-rw-face))) |
| 276 | 513 |
| 514 ;; 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
|
515 ;;(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
|
516 ;; 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
|
517 (if (or (eq enable-local-eval t) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
518 (yes-or-no-p |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
519 (concat "Evaluate lisp code in buffer " |
|
65689
96187e7edd1b
2005-09-25 Romain Francoise <romain@orebokech.com>
Romain Francoise <romain@orebokech.com>
parents:
64762
diff
changeset
|
520 (buffer-name) " to display forms? "))) |
|
62459
b89461946700
Replace `eval-current-buffer' by `eval-buffer'.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
521 (eval-buffer) |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
522 (error "`enable-local-eval' inhibits buffer evaluation")) |
| 276 | 523 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
524 ;; Check if the mandatory variables make sense. |
| 276 | 525 (or forms-file |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
526 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
527 "`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
|
528 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
529 ;; 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
|
530 ;; construct a default format list. |
| 4790 | 531 (or (stringp forms-field-sep) |
| 532 (error (concat "Forms control file error: " | |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
533 "`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
|
534 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
535 (if forms-number-of-fields |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
536 (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
|
537 (> forms-number-of-fields 0)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
538 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
539 "`forms-number-of-fields' must be a number > 0"))) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
540 (or (null forms-format-list) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
541 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
542 "`forms-number-of-fields' has not been set")))) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
543 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
544 (or forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
545 (forms--intuit-from-file)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
546 |
| 276 | 547 (if forms-multi-line |
| 548 (if (and (stringp forms-multi-line) | |
| 549 (eq (length forms-multi-line) 1)) | |
| 550 (if (string= forms-multi-line forms-field-sep) | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
551 (error (concat "Forms control file error: " |
|
63400
00398c07d65c
(forms--intuit-from-file): Fix reference to `forms-number-of-fields' in error message.
Juanma Barranquero <lekktu@gmail.com>
parents:
62728
diff
changeset
|
552 "`forms-multi-line' is equal to `forms-field-sep'"))) |
| 4790 | 553 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
554 "`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
|
555 (or (fboundp 'set-text-properties) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
556 (setq forms-use-text-properties nil)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
557 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
558 ;; Validate and process forms-format-list. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
559 ;;(message "forms: pre-processing format list...") |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
560 (make-local-variable 'forms--elements) |
| 276 | 561 (forms--process-format-list) |
| 562 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
563 ;; Build the formatter and parser. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
564 ;;(message "forms: building formatter...") |
| 276 | 565 (make-local-variable 'forms--format) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
566 (make-local-variable 'forms--markers) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
567 (make-local-variable 'forms--dyntexts) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
568 ;;(message "forms: building parser...") |
| 276 | 569 (forms--make-format) |
| 570 (make-local-variable 'forms--parser) | |
| 571 (forms--make-parser) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
572 ;;(message "forms: building parser... done.") |
| 276 | 573 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
574 ;; Check if record filters are defined. |
| 4790 | 575 (if (and forms-new-record-filter |
| 576 (not (fboundp forms-new-record-filter))) | |
| 577 (error (concat "Forms control file error: " | |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
578 "`forms-new-record-filter' is not a function"))) |
| 4790 | 579 |
| 580 (if (and forms-modified-record-filter | |
| 581 (not (fboundp forms-modified-record-filter))) | |
| 582 (error (concat "Forms control file error: " | |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
583 "`forms-modified-record-filter' is not a function"))) |
| 276 | 584 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
585 ;; 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
|
586 (make-local-variable 'forms-fields) |
| 276 | 587 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
588 ;; Dynamic text support. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
589 (make-local-variable 'forms--dynamic-text) |
| 276 | 590 |
| 23382 | 591 ;; Prevent accidental overwrite of the control file and auto-save. |
|
7381
9e7dd6d12e1f
(forms-mode): Set visited file name to nil to prevent overwrite and autosave.
Karl Heuer <kwzh@gnu.org>
parents:
6561
diff
changeset
|
592 (set-visited-file-name nil) |
| 276 | 593 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
594 ;; Prepare this buffer for further processing. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
595 (setq buffer-read-only nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
596 (erase-buffer) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
597 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
598 ;;(message "forms: setting up... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
599 )) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
600 |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
601 ;; initialization done |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
602 (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
|
603 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
604 ;; 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
|
605 (if (fboundp 'make-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
606 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
607 (make-local-variable 'forms--ro-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
608 (make-local-variable 'forms--rw-face) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
609 (if forms-read-only |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
610 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
611 (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
|
612 (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
|
613 (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
|
614 (setq forms--rw-face forms-rw-face)))) |
| 276 | 615 |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
616 ;; Make more local variables. |
| 276 | 617 (make-local-variable 'forms--file-buffer) |
| 618 (make-local-variable 'forms--total-records) | |
| 619 (make-local-variable 'forms--current-record) | |
| 620 (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
|
621 (make-local-variable 'forms--search-regexp) |
| 276 | 622 |
| 4790 | 623 ; The keymaps are global, so multiple forms mode buffers can share them. |
| 624 ;(make-local-variable 'forms-mode-map) | |
| 625 ;(make-local-variable 'forms-mode-ro-map) | |
| 626 ;(make-local-variable 'forms-mode-edit-map) | |
| 276 | 627 (if forms-mode-map ; already defined |
| 628 nil | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
629 ;;(message "forms: building keymap...") |
| 4790 | 630 (forms--mode-commands) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
631 ;;(message "forms: building keymap... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
632 ) |
| 276 | 633 |
|
6561
eafeaeff6fa5
(forms-mode): Set major mode before finding forms-file. (This gives
Karl Heuer <kwzh@gnu.org>
parents:
4867
diff
changeset
|
634 ;; 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
|
635 (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
|
636 (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
|
637 |
| 276 | 638 ;; find the data file |
| 639 (setq forms--file-buffer (find-file-noselect forms-file)) | |
| 640 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
641 ;; Pre-transform. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
642 (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
|
643 (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
|
644 (if read-file-filter |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
645 (with-current-buffer forms--file-buffer |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
646 (let ((inhibit-read-only t) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
647 (file-modified (buffer-modified-p))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
648 (run-hooks 'read-file-filter) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
649 (if (not file-modified) (set-buffer-modified-p nil))) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
650 (if write-file-filter |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
651 (add-hook 'write-file-functions write-file-filter nil t))) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
652 (if write-file-filter |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
653 (with-current-buffer forms--file-buffer |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
654 (add-hook 'write-file-functions write-file-filter nil t))))) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
655 |
| 276 | 656 ;; count the number of records, and set see if it may be modified |
| 657 (let (ro) | |
| 658 (setq forms--total-records | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
659 (with-current-buffer forms--file-buffer |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
660 (prog1 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
661 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
662 ;;(message "forms: counting records...") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
663 (bury-buffer (current-buffer)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
664 (setq ro buffer-read-only) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
665 (count-lines (point-min) (point-max))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
666 ;;(message "forms: counting records... done.") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
667 ))) |
| 276 | 668 (if ro |
| 669 (setq forms-read-only t))) | |
| 670 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
671 ;;(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
|
672 |
|
3349947f33e6
(forms--set-minor-mode): Rewrite so that describe-mode
Richard M. Stallman <rms@gnu.org>
parents:
4790
diff
changeset
|
673 ;; 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
|
674 ;; 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
|
675 ;; 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
|
676 (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
|
677 (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
|
678 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
679 ;;(message "forms: proceeding setup (keymaps)...") |
| 276 | 680 (forms--set-keymaps) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
681 ;;(message "forms: proceeding setup (commands)...") |
|
3827
4089cf0e3f06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
3697
diff
changeset
|
682 (forms--change-commands) |
| 276 | 683 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
684 ;;(message "forms: proceeding setup (buffer)...") |
| 276 | 685 (set-buffer-modified-p nil) |
| 686 | |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
687 (if (= forms--total-records 0) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
688 ;;(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
|
689 (progn |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
690 (insert |
|
54770
e8824c4f5f7e
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-196
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
691 "GNU Emacs Forms Mode\n\n" |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
692 (if (file-exists-p forms-file) |
|
14356
0c88041fc50a
(forms-mode, forms-toggle-read-only): Fix message text.
Karl Heuer <kwzh@gnu.org>
parents:
14315
diff
changeset
|
693 (concat "No records available in file `" forms-file "'\n\n") |
|
0c88041fc50a
(forms-mode, forms-toggle-read-only): Fix message text.
Karl Heuer <kwzh@gnu.org>
parents:
14315
diff
changeset
|
694 (format "Creating new file `%s'\nwith %d field%s per record\n\n" |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
695 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
|
696 (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
|
697 "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
|
698 " to create new records.\n") |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
699 (setq forms--current-record 1) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
700 (setq buffer-read-only t) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
701 (set-buffer-modified-p nil)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
702 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
703 ;; 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
|
704 (if (< forms--current-record 1) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
705 (setq forms--current-record 1)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
706 (forms-jump-record forms--current-record) |
|
24655
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
707 |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
708 (if forms-insert-after |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
709 (forms-last-record) |
|
39ca035fb9f5
(forms-mode): Don't call forms-first-record or
Karl Heuer <kwzh@gnu.org>
parents:
24077
diff
changeset
|
710 (forms-first-record)) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
711 ) |
| 276 | 712 |
| 713 ;; user customising | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
714 ;;(message "forms: proceeding setup (user hooks)...") |
|
62728
f68140c1b23a
(forms-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62459
diff
changeset
|
715 (run-mode-hooks 'forms-mode-hook 'forms-mode-hooks) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
716 ;;(message "forms: setting up... done.") |
| 276 | 717 |
| 718 ;; be helpful | |
| 719 (forms--help) | |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
720 ) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
721 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
722 (defun forms--process-format-list () |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
723 ;; 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
|
724 ;; 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
|
725 ;; concatenated. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
726 ;; Array `forms--elements' is constructed that contains the order |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
727 ;; of the fields on the display. This array is used by |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
728 ;; `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
|
729 ;; from the form on the screen. |
|
13984
c045b6e55d08
(forms-toggle-read-only, forms-enumerate): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13569
diff
changeset
|
730 ;; Upon completion, `forms-format-list' is guaranteed correct, so |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
731 ;; `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
|
732 ;; any checks. |
| 276 | 733 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
734 ;; Verify that `forms-format-list' is not nil. |
| 276 | 735 (or forms-format-list |
| 4790 | 736 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
737 "`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
|
738 ;; It must be a list. |
| 276 | 739 (or (listp forms-format-list) |
| 4790 | 740 (error (concat "Forms control file error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
741 "`forms-format-list' is not a list"))) |
| 276 | 742 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
743 ;; Assume every field is painted once. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
744 ;; `forms--elements' will grow if needed. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
745 (setq forms--elements (make-vector forms-number-of-fields nil)) |
| 276 | 746 |
| 747 (let ((the-list forms-format-list) ; the list of format elements | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
748 (prev-item nil) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
749 (field-num 0)) ; highest field number |
| 276 | 750 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
751 (setq forms-format-list nil) ; gonna rebuild |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
752 |
| 276 | 753 (while the-list |
| 754 | |
| 755 (let ((el (car-safe the-list)) | |
| 756 (rem (cdr-safe the-list))) | |
| 757 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
758 ;; If it is a symbol, eval it first. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
759 (if (and (symbolp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
760 (boundp el)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
761 (setq el (eval el))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
762 |
| 276 | 763 (cond |
| 764 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
765 ;; Try string ... |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
766 ((stringp el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
767 (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
|
768 (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
|
769 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
770 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
771 (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
|
772 (setq prev-item el))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
773 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
774 ;; Try numeric ... |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
775 ((numberp el) |
| 276 | 776 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
777 ;; Validate range. |
| 276 | 778 (if (or (<= el 0) |
| 779 (> el forms-number-of-fields)) | |
| 4790 | 780 (error (concat "Forms format error: " |
| 781 "field number %d out of range 1..%d") | |
| 782 el forms-number-of-fields)) | |
| 276 | 783 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
784 ;; Store forms order. |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
785 (if (>= field-num (length forms--elements)) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
786 (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
|
787 (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
|
788 (setq field-num (1+ field-num)) |
| 276 | 789 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
790 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
791 (setq forms-format-list |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
792 (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
|
793 (setq prev-item el)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
794 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
795 ;; Try function ... |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
796 ((listp el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
797 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
798 ;; Validate. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
799 (or (fboundp (car-safe el)) |
| 4790 | 800 (error (concat "Forms format error: " |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
801 "%S is not a function") |
|
14421
319064f5de2e
(forms--process-format-list): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14356
diff
changeset
|
802 (car-safe el))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
803 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
804 ;; Shift. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
805 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
806 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
807 (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
|
808 (setq prev-item el)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
809 |
| 276 | 810 ;; else |
| 811 (t | |
| 4790 | 812 (error (concat "Forms format error: " |
|
14421
319064f5de2e
(forms--process-format-list): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14356
diff
changeset
|
813 "invalid element %S") |
|
319064f5de2e
(forms--process-format-list): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14356
diff
changeset
|
814 el))) |
| 276 | 815 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
816 ;; 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
|
817 (setq the-list rem))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
818 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
819 ;; Append last item. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
820 (if prev-item |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
821 (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
822 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
823 (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
|
824 ;; 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
|
825 ;; This prevents parsing problems. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
826 ;; 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
|
827 (if (numberp prev-item) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
828 (setq forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
829 (append forms-format-list (list "\n") nil)))))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
830 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
831 (forms--debug 'forms-format-list |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
832 'forms--elements)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
833 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
834 ;; Special treatment for read-only segments. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
835 ;; |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
836 ;; If text is inserted between two read-only segments, there seems to |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
837 ;; be no way to give the newly inserted text the RW face. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
838 ;; To solve this, read-only segments get the `insert-in-front-hooks' |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
839 ;; property set with a function that temporarily switches the |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
840 ;; properties of the first character of the segment to the RW face, so |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
841 ;; the new text gets the right face. The `post-command-hook' is |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
842 ;; 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
|
843 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
844 (defvar forms--iif-start nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
845 "Record start of modification command.") |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
846 (defvar forms--iif-properties nil |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
847 "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
|
848 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
849 (defun forms--iif-hook (begin end) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
850 "`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
|
851 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
852 ;; Note start location. By making it a marker that points one |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
853 ;; character beyond the actual location, it is guaranteed to move |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
854 ;; correctly if text is inserted. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
855 (or forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
856 (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
|
857 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
858 ;; Check if there is special treatment required. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
859 (if (or (<= forms--iif-start 2) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
860 (get-text-property (- forms--iif-start 2) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
861 'read-only)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
862 (progn |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
863 ;; Fetch current properties. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
864 (setq forms--iif-properties |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
865 (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
|
866 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
867 ;; Replace them. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
868 (let ((inhibit-read-only t)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
869 (set-text-properties |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
870 (1- forms--iif-start) forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
871 (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
|
872 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
873 ;; Enable `post-command-hook' to restore the properties. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
874 (setq post-command-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
875 (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
|
876 |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
877 ;; No action needed. Clear marker. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
878 (setq forms--iif-start nil))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
879 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
880 (defun forms--iif-post-command-hook () |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
881 "`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
|
882 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
883 ;; Disable `post-command-hook'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
884 (setq post-command-hook |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
885 (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
|
886 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
887 ;; Restore properties. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
888 (if forms--iif-start |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
889 (let ((inhibit-read-only t)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
890 (set-text-properties |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
891 (1- forms--iif-start) forms--iif-start |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
892 forms--iif-properties))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
893 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
894 ;; Cleanup. |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
895 (setq forms--iif-start nil)) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
896 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
897 (defvar forms--marker) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
898 (defvar forms--dyntext) |
| 276 | 899 |
| 900 (defun forms--make-format () | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
901 "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
|
902 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
903 ;; 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
|
904 ;; `forms-format-list'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
905 ;; 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
|
906 ;; which function to mapcar. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
907 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
908 (let ((forms--marker 0) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
909 (forms--dyntext 0)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
910 (setq |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
911 forms--format |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
912 (if forms-use-text-properties |
| 26436 | 913 `(lambda (arg) |
| 914 (let ((inhibit-read-only t)) | |
| 915 ,@(apply 'append | |
| 916 (mapcar 'forms--make-format-elt-using-text-properties | |
| 917 forms-format-list)) | |
| 918 ;; Prevent insertion before the first text. | |
| 919 ,@(if (numberp (car forms-format-list)) | |
| 920 nil | |
| 921 '((add-text-properties (point-min) (1+ (point-min)) | |
| 922 '(front-sticky (read-only intangible))))) | |
| 923 ;; Prevent insertion after the last text. | |
| 924 (remove-text-properties (1- (point)) (point) | |
| 925 '(rear-nonsticky))) | |
| 926 (setq forms--iif-start nil)) | |
| 927 `(lambda (arg) | |
| 928 ,@(apply 'append | |
| 929 (mapcar 'forms--make-format-elt forms-format-list))))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
930 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
931 ;; 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
|
932 ;; 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
|
933 (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
|
934 (setq forms--dyntexts (make-vector forms--dyntext nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
935 (forms--debug 'forms--format)) |
| 276 | 936 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
937 (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
|
938 "Helper routine to generate format function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
939 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
940 ;; 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
|
941 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
942 ;; ;; preamble |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
943 ;; (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
944 ;; (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
945 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
946 ;; ;; A string, e.g. "text: ". |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
947 ;; (set-text-properties |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
948 ;; (point) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
949 ;; (progn (insert "text: ") (point)) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
950 ;; (list 'face forms--ro-face |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
951 ;; 'read-only 1 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
952 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
953 ;; '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
|
954 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
955 ;; ;; A field, e.g. 6. |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
956 ;; (let ((here (point))) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
957 ;; (aset forms--markers 0 (point-marker)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
958 ;; (insert (elt arg 5)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
959 ;; (or (= (point) here) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
960 ;; (set-text-properties |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
961 ;; here (point) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
962 ;; (list 'face forms--rw-face |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
963 ;; 'front-sticky '(face)))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
964 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
965 ;; ;; 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
|
966 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
967 ;; (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
968 ;; (progn (insert "\nmore text: ") (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
969 ;; (list 'face forms--ro-face |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
970 ;; 'read-only 2 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
971 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
972 ;; '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
|
973 ;; |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
974 ;; ;; 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
|
975 ;; (set-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
976 ;; (point) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
977 ;; (progn |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
978 ;; (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
|
979 ;; (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
980 ;; (list 'face forms--ro-face |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
981 ;; 'read-only 2 |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
982 ;; 'insert-in-front-hooks 'forms--iif-hook |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
983 ;; 'rear-nonsticky '(read-only face insert-in-front-hooks))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
984 ;; |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
985 ;; ;; Prevent insertion before the first text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
986 ;; (add-text-properties (point-min) (1+ (point-min)) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
987 ;; '(front-sticky (read-only)))))) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
988 ;; ;; Prevent insertion after the last text. |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
989 ;; (remove-text-properties (1- (point)) (point) |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
990 ;; '(rear-nonsticky))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
991 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
992 ;; ;; wrap up |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
993 ;; (setq forms--iif-start nil) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
994 ;; )) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
995 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
996 (cond |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
997 ((stringp el) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
998 |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
999 `((set-text-properties |
| 26436 | 1000 (point) ; start at point |
| 1001 (progn ; until after insertion | |
| 1002 (insert ,el) | |
| 1003 (point)) | |
| 1004 (list 'face forms--ro-face ; read-only appearance | |
| 1005 'read-only ,@(list (1+ forms--marker)) | |
| 1006 'intangible ,@(list (1+ forms--marker)) | |
| 1007 'insert-in-front-hooks '(forms--iif-hook) | |
| 1008 'rear-nonsticky '(face read-only insert-in-front-hooks | |
| 1009 intangible))))) | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1010 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1011 ((numberp el) |
| 26436 | 1012 `((let ((here (point))) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1013 (aset forms--markers |
| 26436 | 1014 ,(prog1 forms--marker |
| 1015 (setq forms--marker (1+ forms--marker))) | |
| 1016 (point-marker)) | |
| 1017 (insert (elt arg ,(1- el))) | |
| 1018 (or (= (point) here) | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1019 (set-text-properties |
| 26436 | 1020 here (point) |
| 1021 (list 'face forms--rw-face | |
| 1022 'front-sticky '(face))))))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1023 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1024 ((listp el) |
| 26436 | 1025 `((set-text-properties |
| 1026 (point) | |
| 1027 (progn | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1028 (insert (aset forms--dyntexts |
| 26436 | 1029 ,(prog1 forms--dyntext |
| 1030 (setq forms--dyntext (1+ forms--dyntext))) | |
| 1031 ,el)) | |
| 1032 (point)) | |
| 1033 (list 'face forms--ro-face | |
| 1034 'read-only ,@(list (1+ forms--marker)) | |
| 1035 'intangible ,@(list (1+ forms--marker)) | |
| 1036 'insert-in-front-hooks '(forms--iif-hook) | |
| 1037 'rear-nonsticky '(read-only face insert-in-front-hooks | |
| 1038 intangible))))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1039 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1040 ;; end of cond |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1041 )) |
| 276 | 1042 |
| 1043 (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
|
1044 "Helper routine to generate format function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1045 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1046 ;; 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
|
1047 ;; `forms--format' will look like |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1048 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1049 ;; (lambda (arg) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1050 ;; ;; a string, e.g. "text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1051 ;; (insert "text: ") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1052 ;; ;; a field, e.g. 6 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1053 ;; (aset forms--markers 0 (point-marker)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1054 ;; (insert (elt arg 5)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1055 ;; ;; another string, e.g. "\nmore text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1056 ;; (insert "\nmore text: ") |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1057 ;; ;; a function, e.g. (tocol 40) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1058 ;; (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
|
1059 ;; ... ) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1060 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1061 (cond |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1062 ((stringp el) |
| 26436 | 1063 `((insert ,el))) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1064 ((numberp el) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1065 (prog1 |
| 26436 | 1066 `((aset forms--markers ,forms--marker (point-marker)) |
| 1067 (insert (elt arg ,(1- el)))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1068 (setq forms--marker (1+ forms--marker)))) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1069 ((listp el) |
|
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1070 (prog1 |
| 26436 | 1071 `((insert (aset forms--dyntexts ,forms--dyntext ,el))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1072 (setq forms--dyntext (1+ forms--dyntext)))))) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1073 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1074 (defvar forms--field) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1075 (defvar forms--recordv) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1076 (defvar forms--seen-text) |
| 276 | 1077 |
| 1078 (defun forms--make-parser () | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1079 "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
|
1080 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1081 ;; 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
|
1082 ;; `forms--parser-using-text-properties'. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1083 ;; 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
|
1084 ;; `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
|
1085 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1086 (setq |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1087 forms--parser |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1088 (if forms-use-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1089 (function forms--parser-using-text-properties) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1090 (let ((forms--field nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1091 (forms--seen-text nil) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1092 (forms--dyntext 0)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1093 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1094 ;; 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
|
1095 ;; see `forms--make-parser-elt' for details. |
| 26436 | 1096 `(lambda nil |
| 1097 (let (here) | |
| 1098 (goto-char (point-min)) | |
| 1099 ,@(apply 'append | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1100 (mapcar |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1101 'forms--make-parser-elt |
| 26436 | 1102 (append forms-format-list (list nil))))))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1103 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1104 (forms--debug 'forms--parser)) |
| 276 | 1105 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1106 (defun forms--parser-using-text-properties () |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1107 "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
|
1108 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1109 ;; 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
|
1110 ;; 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
|
1111 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1112 (let ((i 0) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1113 here there) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1114 (while (< i (length forms--markers)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1115 (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
|
1116 (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
|
1117 (aset forms--recordv (aref forms--elements i) nil) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1118 (if (setq there |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1119 (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
|
1120 (aset forms--recordv (aref forms--elements i) |
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
parents:
13337
diff
changeset
|
1121 (buffer-substring-no-properties here there)) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1122 (aset forms--recordv (aref forms--elements i) |
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
parents:
13337
diff
changeset
|
1123 (buffer-substring-no-properties here (point-max))))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1124 (setq i (1+ i))))) |
| 276 | 1125 |
| 1126 (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
|
1127 "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
|
1128 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1129 ;; The parse routine will look like: |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1130 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1131 ;; (lambda nil |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1132 ;; (let (here) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1133 ;; (goto-char (point-min)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1134 ;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1135 ;; ;; "text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1136 ;; (if (not (looking-at "text: ")) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1137 ;; (error "Parse error: cannot find \"text: \"")) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1138 ;; (forward-char 6) ; past "text: " |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1139 ;; |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1140 ;; ;; 6 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1141 ;; ;; "\nmore text: " |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1142 ;; (setq here (point)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1143 ;; (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
|
1144 ;; (error "Parse error: cannot find \"\\nmore text: \"")) |
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
parents:
13337
diff
changeset
|
1145 ;; (aset forms--recordv 5 (buffer-substring-no-properties here (- (point) 12))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1146 ;; |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1147 ;; ;; (tocol 40) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1148 ;; (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
|
1149 ;; (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
|
1150 ;; (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
|
1151 ;; (forward-char (length forms--dyntext)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1152 ;; (setq forms--dynamic-text (cdr-safe forms--dynamic-text))) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1153 ;; ... |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1154 ;; ;; final flush (due to terminator sentinel, see below) |
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
parents:
13337
diff
changeset
|
1155 ;; (aset forms--recordv 7 (buffer-substring-no-properties (point) (point-max))) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1156 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1157 (cond |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1158 ((stringp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1159 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1160 (if forms--field |
| 26436 | 1161 `((setq here (point)) |
| 1162 (if (not (search-forward ,el nil t nil)) | |
| 1163 (error "Parse error: cannot find `%s'" ,el)) | |
| 1164 (aset forms--recordv ,(1- forms--field) | |
| 1165 (buffer-substring-no-properties here | |
| 1166 (- (point) ,(length el))))) | |
| 1167 `((if (not (looking-at ,(regexp-quote el))) | |
| 1168 (error "Parse error: not looking at `%s'" ,el)) | |
| 1169 (forward-char ,(length el)))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1170 (setq forms--seen-text t) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1171 (setq forms--field nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1172 ((numberp el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1173 (if forms--field |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1174 (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
|
1175 forms--field el) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1176 (setq forms--field el) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1177 nil)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1178 ((null el) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1179 (if forms--field |
| 26436 | 1180 `((aset forms--recordv ,(1- forms--field) |
| 1181 (buffer-substring-no-properties (point) (point-max)))))) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1182 ((listp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1183 (prog1 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1184 (if forms--field |
| 26436 | 1185 `((let ((here (point)) |
| 1186 (forms--dyntext (aref forms--dyntexts ,forms--dyntext))) | |
| 1187 (if (not (search-forward forms--dyntext nil t nil)) | |
| 1188 (error "Parse error: cannot find `%s'" forms--dyntext)) | |
| 1189 (aset forms--recordv ,(1- forms--field) | |
| 1190 (buffer-substring-no-properties here | |
| 1191 (- (point) (length forms--dyntext)))))) | |
| 1192 `((let ((forms--dyntext (aref forms--dyntexts ,forms--dyntext))) | |
| 1193 (if (not (looking-at (regexp-quote forms--dyntext))) | |
| 1194 (error "Parse error: not looking at `%s'" forms--dyntext)) | |
| 1195 (forward-char (length forms--dyntext))))) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1196 (setq forms--dyntext (1+ forms--dyntext)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1197 (setq forms--seen-text t) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1198 (setq forms--field nil))) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1199 )) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1200 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1201 (defun forms--intuit-from-file () |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1202 "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
|
1203 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1204 ;; 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
|
1205 (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
|
1206 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1207 ;; 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
|
1208 (if (not (file-exists-p forms-file)) |
|
63400
00398c07d65c
(forms--intuit-from-file): Fix reference to `forms-number-of-fields' in error message.
Juanma Barranquero <lekktu@gmail.com>
parents:
62728
diff
changeset
|
1209 (error "Need existing file or explicit `forms-number-of-fields'") |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1210 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1211 ;; 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
|
1212 (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
|
1213 (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
|
1214 (the-record)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1215 (setq the-record |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1216 (with-current-buffer forms--file-buffer |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1217 (let ((inhibit-read-only t)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1218 (run-hooks 'read-file-filter)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1219 (goto-char (point-min)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1220 (forms--get-record))) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1221 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1222 ;; This may be overkill, but try to avoid interference with |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1223 ;; the normal processing. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1224 (kill-buffer forms--file-buffer) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1225 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1226 ;; Count the number of fields in `the-record'. |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1227 (let ((start-pos 0) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1228 found-pos |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1229 (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
|
1230 (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
|
1231 (while (setq found-pos |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1232 (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
|
1233 (progn |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1234 (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
|
1235 (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
|
1236 |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1237 ;; Construct default format list. |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1238 (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
|
1239 (let ((i 0)) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1240 (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
|
1241 (setq forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1242 (append forms-format-list |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1243 (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
|
1244 |
| 276 | 1245 (defun forms--set-keymaps () |
| 1246 "Set the keymaps used in this mode." | |
| 1247 | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1248 (use-local-map (if forms-read-only |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1249 forms-mode-ro-map |
| 4790 | 1250 forms-mode-edit-map))) |
| 1251 | |
| 1252 (defun forms--mode-commands () | |
| 1253 "Fill the Forms mode keymaps." | |
| 276 | 1254 |
| 4790 | 1255 ;; `forms-mode-map' is always accessible via \C-c prefix. |
| 1256 (setq forms-mode-map (make-keymap)) | |
| 1257 (define-key forms-mode-map "\t" 'forms-next-field) | |
| 1258 (define-key forms-mode-map "\C-k" 'forms-delete-record) | |
| 1259 (define-key forms-mode-map "\C-q" 'forms-toggle-read-only) | |
| 1260 (define-key forms-mode-map "\C-o" 'forms-insert-record) | |
| 1261 (define-key forms-mode-map "\C-l" 'forms-jump-record) | |
| 1262 (define-key forms-mode-map "\C-n" 'forms-next-record) | |
| 1263 (define-key forms-mode-map "\C-p" 'forms-prev-record) | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1264 (define-key forms-mode-map "\C-r" 'forms-search-backward) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1265 (define-key forms-mode-map "\C-s" 'forms-search-forward) |
| 4790 | 1266 (define-key forms-mode-map "\C-x" 'forms-exit) |
| 1267 (define-key forms-mode-map "<" 'forms-first-record) | |
| 1268 (define-key forms-mode-map ">" 'forms-last-record) | |
| 1269 (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
|
1270 |
| 4790 | 1271 ;; `forms-mode-ro-map' replaces the local map when in read-only mode. |
| 1272 (setq forms-mode-ro-map (make-keymap)) | |
| 1273 (suppress-keymap forms-mode-ro-map) | |
| 1274 (define-key forms-mode-ro-map "\C-c" forms-mode-map) | |
| 1275 (define-key forms-mode-ro-map "q" 'forms-toggle-read-only) | |
| 1276 (define-key forms-mode-ro-map "l" 'forms-jump-record) | |
| 1277 (define-key forms-mode-ro-map "n" 'forms-next-record) | |
| 1278 (define-key forms-mode-ro-map "p" 'forms-prev-record) | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1279 (define-key forms-mode-ro-map "r" 'forms-search-backward) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1280 (define-key forms-mode-ro-map "s" 'forms-search-forward) |
| 4790 | 1281 (define-key forms-mode-ro-map "x" 'forms-exit) |
| 1282 (define-key forms-mode-ro-map "<" 'forms-first-record) | |
| 1283 (define-key forms-mode-ro-map ">" 'forms-last-record) | |
| 1284 (define-key forms-mode-ro-map "?" 'describe-mode) | |
| 1285 (define-key forms-mode-ro-map " " 'forms-next-record) | |
| 1286 (forms--mode-commands1 forms-mode-ro-map) | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1287 (forms--mode-menu-ro forms-mode-ro-map) |
| 4790 | 1288 |
| 1289 ;; This is the normal, local map. | |
| 1290 (setq forms-mode-edit-map (make-keymap)) | |
| 1291 (define-key forms-mode-edit-map "\C-c" forms-mode-map) | |
| 1292 (forms--mode-commands1 forms-mode-edit-map) | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1293 (forms--mode-menu-edit forms-mode-edit-map) |
| 4790 | 1294 ) |
| 1295 | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1296 (defun forms--mode-menu-ro (map) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1297 ;;; Menu initialisation |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1298 ; (define-key map [menu-bar] (make-sparse-keymap)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1299 (define-key map [menu-bar forms] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1300 (cons "Forms" (make-sparse-keymap "Forms"))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1301 (define-key map [menu-bar forms menu-forms-exit] |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1302 '("Exit Forms Mode" . forms-exit)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1303 (define-key map [menu-bar forms menu-forms-sep1] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1304 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1305 (define-key map [menu-bar forms menu-forms-save] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1306 '("Save Data" . forms-save-buffer)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1307 (define-key map [menu-bar forms menu-forms-print] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1308 '("Print Data" . forms-print)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1309 (define-key map [menu-bar forms menu-forms-describe] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1310 '("Describe Mode" . describe-mode)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1311 (define-key map [menu-bar forms menu-forms-toggle-ro] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1312 '("Toggle View/Edit" . forms-toggle-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1313 (define-key map [menu-bar forms menu-forms-jump-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1314 '("Jump" . forms-jump-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1315 (define-key map [menu-bar forms menu-forms-search-backward] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1316 '("Search Backward" . forms-search-backward)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1317 (define-key map [menu-bar forms menu-forms-search-forward] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1318 '("Search Forward" . forms-search-forward)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1319 (define-key map [menu-bar forms menu-forms-delete-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1320 '("Delete" . forms-delete-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1321 (define-key map [menu-bar forms menu-forms-insert-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1322 '("Insert" . forms-insert-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1323 (define-key map [menu-bar forms menu-forms-sep2] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1324 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1325 (define-key map [menu-bar forms menu-forms-last-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1326 '("Last Record" . forms-last-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1327 (define-key map [menu-bar forms menu-forms-first-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1328 '("First Record" . forms-first-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1329 (define-key map [menu-bar forms menu-forms-prev-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1330 '("Previous Record" . forms-prev-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1331 (define-key map [menu-bar forms menu-forms-next-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1332 '("Next Record" . forms-next-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1333 (define-key map [menu-bar forms menu-forms-sep3] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1334 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1335 (define-key map [menu-bar forms menu-forms-prev-field] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1336 '("Previous Field" . forms-prev-field)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1337 (define-key map [menu-bar forms menu-forms-next-field] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1338 '("Next Field" . forms-next-field)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1339 (put 'forms-insert-record 'menu-enable '(not forms-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1340 (put 'forms-delete-record 'menu-enable '(not forms-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1341 ) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1342 (defun forms--mode-menu-edit (map) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1343 ;;; Menu initialisation |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1344 ; (define-key map [menu-bar] (make-sparse-keymap)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1345 (define-key map [menu-bar forms] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1346 (cons "Forms" (make-sparse-keymap "Forms"))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1347 (define-key map [menu-bar forms menu-forms-edit--exit] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1348 '("Exit" . forms-exit)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1349 (define-key map [menu-bar forms menu-forms-edit-sep1] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1350 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1351 (define-key map [menu-bar forms menu-forms-edit-save] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1352 '("Save Data" . forms-save-buffer)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1353 (define-key map [menu-bar forms menu-forms-edit-print] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1354 '("Print Data" . forms-print)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1355 (define-key map [menu-bar forms menu-forms-edit-describe] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1356 '("Describe Mode" . describe-mode)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1357 (define-key map [menu-bar forms menu-forms-edit-toggle-ro] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1358 '("Toggle View/Edit" . forms-toggle-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1359 (define-key map [menu-bar forms menu-forms-edit-jump-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1360 '("Jump" . forms-jump-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1361 (define-key map [menu-bar forms menu-forms-edit-search-backward] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1362 '("Search Backward" . forms-search-backward)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1363 (define-key map [menu-bar forms menu-forms-edit-search-forward] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1364 '("Search Forward" . forms-search-forward)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1365 (define-key map [menu-bar forms menu-forms-edit-delete-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1366 '("Delete" . forms-delete-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1367 (define-key map [menu-bar forms menu-forms-edit-insert-record] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1368 '("Insert" . forms-insert-record)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1369 (define-key map [menu-bar forms menu-forms-edit-sep2] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1370 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1371 (define-key map [menu-bar forms menu-forms-edit-last-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1372 '("Last Record" . forms-last-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1373 (define-key map [menu-bar forms menu-forms-edit-first-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1374 '("First Record" . forms-first-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1375 (define-key map [menu-bar forms menu-forms-edit-prev-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1376 '("Previous Record" . forms-prev-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1377 (define-key map [menu-bar forms menu-forms-edit-next-record] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1378 '("Next Record" . forms-next-record)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1379 (define-key map [menu-bar forms menu-forms-edit-sep3] |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1380 '("----")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1381 (define-key map [menu-bar forms menu-forms-edit-prev-field] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1382 '("Previous Field" . forms-prev-field)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1383 (define-key map [menu-bar forms menu-forms-edit-next-field] |
|
12031
a59559009d7e
(forms--mode-menu-ro, forms--mode-menu-edit): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11645
diff
changeset
|
1384 '("Next Field" . forms-next-field)) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1385 (put 'forms-insert-record 'menu-enable '(not forms-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1386 (put 'forms-delete-record 'menu-enable '(not forms-read-only)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1387 ) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1388 |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1389 (defun forms--mode-commands1 (map) |
| 4790 | 1390 "Helper routine to define keys." |
|
51160
f7bc28024050
(forms--mode-commands1): Bind \t, not `tab'.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
1391 (define-key map "\t" 'forms-next-field) |
| 4790 | 1392 (define-key map [S-tab] 'forms-prev-field) |
| 1393 (define-key map [next] 'forms-next-record) | |
| 1394 (define-key map [prior] 'forms-prev-record) | |
| 1395 (define-key map [begin] 'forms-first-record) | |
| 1396 (define-key map [last] 'forms-last-record) | |
| 1397 (define-key map [backtab] 'forms-prev-field) | |
| 276 | 1398 ) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1399 |
| 276 | 1400 ;;; Changed functions |
| 1401 | |
| 1402 (defun forms--change-commands () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1403 "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
|
1404 |
| 276 | 1405 ;; scroll-down -> forms-prev-record |
| 1406 ;; scroll-up -> forms-next-record | |
| 3828 | 1407 (if forms-forms-scroll |
| 1408 (progn | |
|
49169
755b96b5f3ca
(forms--change-commands): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
45337
diff
changeset
|
1409 (local-set-key [remap scroll-up] 'forms-next-record) |
|
107853
de5ba6f3514c
Bind `C-v' to `scroll-up-command' and `M-v' to `scroll-down-command'.
Juri Linkov <juri@jurta.org>
parents:
106815
diff
changeset
|
1410 (local-set-key [remap scroll-down] 'forms-prev-record) |
|
de5ba6f3514c
Bind `C-v' to `scroll-up-command' and `M-v' to `scroll-down-command'.
Juri Linkov <juri@jurta.org>
parents:
106815
diff
changeset
|
1411 (local-set-key [remap scroll-up-command] 'forms-next-record) |
|
de5ba6f3514c
Bind `C-v' to `scroll-up-command' and `M-v' to `scroll-down-command'.
Juri Linkov <juri@jurta.org>
parents:
106815
diff
changeset
|
1412 (local-set-key [remap scroll-down-command] 'forms-prev-record))) |
| 276 | 1413 ;; |
| 1414 ;; beginning-of-buffer -> forms-first-record | |
| 1415 ;; end-of-buffer -> forms-end-record | |
| 3828 | 1416 (if forms-forms-jump |
| 1417 (progn | |
|
49169
755b96b5f3ca
(forms--change-commands): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
45337
diff
changeset
|
1418 (local-set-key [remap beginning-of-buffer] 'forms-first-record) |
|
755b96b5f3ca
(forms--change-commands): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
45337
diff
changeset
|
1419 (local-set-key [remap end-of-buffer] 'forms-last-record))) |
| 276 | 1420 ;; |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1421 ;; Save buffer |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1422 (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
|
1423 ;; |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1424 ;; We have our own revert function - use it. |
| 4790 | 1425 (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
|
1426 (setq revert-buffer-function 'forms--revert-buffer) |
| 4790 | 1427 |
| 1428 t) | |
| 276 | 1429 |
| 1430 (defun forms--help () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1431 "Initial help for Forms mode." |
|
14315
ab041898078d
(forms--help, forms-search-forward, forms-search-backward): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1432 (message "%s" (substitute-command-keys (concat |
| 4790 | 1433 "\\[forms-next-record]:next" |
| 1434 " \\[forms-prev-record]:prev" | |
| 1435 " \\[forms-first-record]:first" | |
| 1436 " \\[forms-last-record]:last" | |
| 1437 " \\[describe-mode]:help")))) | |
| 276 | 1438 |
| 1439 (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
|
1440 "Translate in SUBJ all chars ARG into char REP. ARG and REP should |
| 276 | 1441 be single-char strings." |
| 1442 (let ((i 0) | |
| 1443 (re (regexp-quote arg)) | |
| 1444 (k (string-to-char rep))) | |
| 1445 (while (setq i (string-match re subj i)) | |
| 1446 (aset subj i k) | |
| 1447 (setq i (1+ i))))) | |
| 1448 | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1449 (defun forms--exit (&optional save) |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1450 "Internal exit from forms mode function." |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1451 |
| 276 | 1452 (let ((buf (buffer-name forms--file-buffer))) |
| 1453 (forms--checkmod) | |
| 1454 (if (and save | |
| 1455 (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
|
1456 (forms-save-buffer)) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1457 (with-current-buffer forms--file-buffer |
| 276 | 1458 (delete-auto-save-file-if-necessary) |
| 1459 (kill-buffer (current-buffer))) | |
| 1460 (if (get-buffer buf) ; not killed??? | |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1461 (if save |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1462 (error "Problem saving buffer %s" (buffer-name buf))) |
| 276 | 1463 (delete-auto-save-file-if-necessary) |
| 1464 (kill-buffer (current-buffer))))) | |
| 1465 | |
| 1466 (defun forms--get-record () | |
| 1467 "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
|
1468 |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1469 ;; 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
|
1470 |
| 276 | 1471 (or (bolp) |
| 1472 (beginning-of-line nil)) | |
| 1473 (let ((here (point))) | |
| 1474 (prog2 | |
| 1475 (end-of-line) | |
|
13569
438ebe3b6f8d
Use `buffer-substring-no-properties' instead of `buffer-substring' to
Johan Vromans <jvromans@squirrel.nl>
parents:
13337
diff
changeset
|
1476 (buffer-substring-no-properties here (point)) |
| 276 | 1477 (goto-char here)))) |
| 1478 | |
| 1479 (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
|
1480 "Format THE-RECORD and display it in the current buffer." |
| 276 | 1481 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1482 ;; Split the-record. |
| 276 | 1483 (let (the-result |
| 1484 (start-pos 0) | |
| 1485 found-pos | |
| 1486 (field-sep-length (length forms-field-sep))) | |
| 1487 (if forms-multi-line | |
| 1488 (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
|
1489 ;; Add an extra separator (makes splitting easy). |
| 276 | 1490 (setq the-record (concat the-record forms-field-sep)) |
| 1491 (while (setq found-pos (string-match forms-field-sep the-record start-pos)) | |
| 1492 (let ((ent (substring the-record start-pos found-pos))) | |
| 1493 (setq the-result | |
| 1494 (append the-result (list ent))) | |
| 1495 (setq start-pos (+ field-sep-length found-pos)))) | |
| 1496 (setq forms--the-record-list the-result)) | |
| 1497 | |
| 1498 (setq buffer-read-only nil) | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1499 (if forms-use-text-properties |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1500 (let ((inhibit-read-only t)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1501 (set-text-properties (point-min) (point-max) nil))) |
| 276 | 1502 (erase-buffer) |
| 1503 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1504 ;; Verify the number of fields, extend forms--the-record-list if needed. |
| 276 | 1505 (if (= (length forms--the-record-list) forms-number-of-fields) |
| 1506 nil | |
|
12847
61961ca01260
(forms-check-number-of-fields): New vbl.
Richard M. Stallman <rms@gnu.org>
parents:
12508
diff
changeset
|
1507 (if (null forms-check-number-of-fields) |
|
61961ca01260
(forms-check-number-of-fields): New vbl.
Richard M. Stallman <rms@gnu.org>
parents:
12508
diff
changeset
|
1508 nil |
|
61961ca01260
(forms-check-number-of-fields): New vbl.
Richard M. Stallman <rms@gnu.org>
parents:
12508
diff
changeset
|
1509 (message "Warning: this record has %d fields instead of %d" |
|
61961ca01260
(forms-check-number-of-fields): New vbl.
Richard M. Stallman <rms@gnu.org>
parents:
12508
diff
changeset
|
1510 (length forms--the-record-list) forms-number-of-fields)) |
| 276 | 1511 (if (< (length forms--the-record-list) forms-number-of-fields) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1512 (setq forms--the-record-list |
| 276 | 1513 (append forms--the-record-list |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1514 (make-list |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1515 (- forms-number-of-fields |
| 276 | 1516 (length forms--the-record-list)) |
| 1517 ""))))) | |
| 1518 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1519 ;; Call the formatter function. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1520 (setq forms-fields (append (list nil) forms--the-record-list nil)) |
| 276 | 1521 (funcall forms--format forms--the-record-list) |
| 1522 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1523 ;; Prepare. |
| 276 | 1524 (goto-char (point-min)) |
| 1525 (set-buffer-modified-p nil) | |
| 1526 (setq buffer-read-only forms-read-only) | |
| 1527 (setq mode-line-process | |
|
24077
b5abeb8ab500
(forms--show-record): Convert integers to string
Richard M. Stallman <rms@gnu.org>
parents:
23382
diff
changeset
|
1528 (concat " " (int-to-string forms--current-record) |
|
b5abeb8ab500
(forms--show-record): Convert integers to string
Richard M. Stallman <rms@gnu.org>
parents:
23382
diff
changeset
|
1529 "/" (int-to-string forms--total-records)))) |
| 276 | 1530 |
| 1531 (defun forms--parse-form () | |
| 1532 "Parse contents of form into list of strings." | |
| 1533 ;; The contents of the form are parsed, and a new list of strings | |
| 1534 ;; is constructed. | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1535 ;; 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
|
1536 ;; constructed, which is updated with the new contents. Therefore |
| 276 | 1537 ;; fields which were not in the form are not modified. |
| 1538 ;; Finally, the vector is transformed into a list for further processing. | |
| 1539 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1540 (let (forms--recordv) |
| 276 | 1541 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1542 ;; Build the vector. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1543 (setq forms--recordv (vconcat forms--the-record-list)) |
| 276 | 1544 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1545 ;; Parse the form and update the vector. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1546 (let ((forms--dynamic-text forms--dynamic-text)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1547 (funcall forms--parser)) |
| 276 | 1548 |
| 4790 | 1549 (if forms-modified-record-filter |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1550 ;; 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
|
1551 ;; 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
|
1552 (let ((the-fields (vconcat [nil] forms--recordv))) |
| 4790 | 1553 (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
|
1554 (cdr (append the-fields nil))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1555 |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1556 ;; Transform to a list and return. |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1557 (append forms--recordv nil)))) |
| 276 | 1558 |
| 1559 (defun forms--update () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1560 "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
|
1561 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
|
1562 |
| 276 | 1563 (if forms-read-only |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1564 (error "Buffer is read-only")) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1565 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1566 (let (the-record) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1567 ;; Build new record. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1568 (setq forms--the-record-list (forms--parse-form)) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1569 (setq the-record |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1570 (mapconcat 'identity forms--the-record-list forms-field-sep)) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1571 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1572 (if (string-match (regexp-quote forms-field-sep) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1573 (mapconcat 'identity forms--the-record-list "")) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1574 (error "Field separator occurs in record - update refused")) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1575 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1576 ;; Handle multi-line fields, if allowed. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1577 (if forms-multi-line |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1578 (forms--trans the-record "\n" forms-multi-line)) |
| 276 | 1579 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1580 ;; A final sanity check before updating. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1581 (if (string-match "\n" the-record) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1582 (error "Multi-line fields in this record - update refused")) |
| 276 | 1583 |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1584 (with-current-buffer forms--file-buffer |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1585 ;; Use delete-region instead of kill-region, to avoid |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1586 ;; adding junk to the kill-ring. |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1587 (delete-region (line-beginning-position) (line-end-position)) |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1588 (insert the-record) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1589 (beginning-of-line)))) |
| 276 | 1590 |
| 1591 (defun forms--checkmod () | |
| 1592 "Check if this form has been modified, and call forms--update if so." | |
| 1593 (if (buffer-modified-p nil) | |
| 1594 (let ((here (point))) | |
| 1595 (forms--update) | |
| 1596 (set-buffer-modified-p nil) | |
| 1597 (goto-char here)))) | |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1598 |
| 276 | 1599 ;;; Start and exit |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1600 |
|
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1601 ;;;###autoload |
| 276 | 1602 (defun forms-find-file (fn) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1603 "Visit a file in Forms mode." |
| 276 | 1604 (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
|
1605 (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
|
1606 (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
|
1607 (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
|
1608 (or forms--mode-setup (forms-mode t)))) |
| 276 | 1609 |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1610 ;;;###autoload |
| 276 | 1611 (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
|
1612 "Visit a file in Forms mode in other window." |
| 276 | 1613 (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
|
1614 (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
|
1615 (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
|
1616 (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
|
1617 (or forms--mode-setup (forms-mode t)))) |
| 276 | 1618 |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1619 (defun forms-exit () |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1620 "Normal exit from Forms mode. Modified buffers are saved." |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1621 (interactive) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1622 (forms--exit t)) |
| 276 | 1623 |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1624 (defun forms-exit-no-save () |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1625 "Exit from Forms mode without saving buffers." |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1626 (interactive) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1627 (forms--exit nil)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1628 |
| 276 | 1629 ;;; Navigating commands |
| 1630 | |
| 1631 (defun forms-next-record (arg) | |
| 1632 "Advance to the ARGth following record." | |
| 1633 (interactive "P") | |
| 1634 (forms-jump-record (+ forms--current-record (prefix-numeric-value arg)) t)) | |
| 1635 | |
| 1636 (defun forms-prev-record (arg) | |
| 1637 "Advance to the ARGth previous record." | |
| 1638 (interactive "P") | |
| 1639 (forms-jump-record (- forms--current-record (prefix-numeric-value arg)) t)) | |
| 1640 | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1641 (defun forms--goto-record (rn &optional current) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1642 "Goto record number RN. |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1643 If CURRENT is provided, it specifies the current record and can be used |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1644 to speed up access to RN. Returns the number of records missing, if any." |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1645 (if current |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1646 (forward-line (- rn current)) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1647 ;; goto-line does not do what we want when the buffer is narrowed. |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1648 (goto-char (point-min)) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1649 (forward-line (1- rn)))) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1650 |
| 276 | 1651 (defun forms-jump-record (arg &optional relative) |
| 1652 "Jump to a random record." | |
| 1653 (interactive "NRecord number: ") | |
| 1654 | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1655 ;; Verify that the record number is within range. |
| 276 | 1656 (if (or (> arg forms--total-records) |
| 1657 (<= arg 0)) | |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1658 (error |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1659 ;; Don't give the message if just paging. |
| 276 | 1660 (if (not relative) |
| 1661 (message "Record number %d out of range 1..%d" | |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1662 arg forms--total-records) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1663 ""))) |
| 276 | 1664 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1665 ;; Flush. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1666 (forms--checkmod) |
| 276 | 1667 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1668 ;; Calculate displacement. |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1669 (let ((cur forms--current-record)) |
| 276 | 1670 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1671 ;; `forms--show-record' needs it now. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1672 (setq forms--current-record arg) |
| 276 | 1673 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1674 ;; Get the record and show it. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1675 (forms--show-record |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1676 (with-current-buffer forms--file-buffer |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1677 (beginning-of-line) |
| 276 | 1678 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1679 ;; Move, and adjust the amount if needed (shouldn't happen). |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1680 (setq cur (- arg (forms--goto-record arg (if relative cur)))) |
| 276 | 1681 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1682 (forms--get-record))) |
| 276 | 1683 |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1684 ;; This shouldn't happen. |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1685 (if (/= forms--current-record cur) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1686 (progn |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1687 (setq forms--current-record cur) |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1688 (error "Stuck at record %d" cur))))) |
| 276 | 1689 |
| 1690 (defun forms-first-record () | |
| 1691 "Jump to first record." | |
| 1692 (interactive) | |
| 1693 (forms-jump-record 1)) | |
| 1694 | |
| 1695 (defun forms-last-record () | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1696 "Jump to last record. |
|
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1697 As a side effect: re-calculates the number of records in the data file." |
| 276 | 1698 (interactive) |
| 1699 (let | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1700 ((numrec |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1701 (with-current-buffer forms--file-buffer |
| 276 | 1702 (count-lines (point-min) (point-max))))) |
| 1703 (if (= numrec forms--total-records) | |
| 1704 nil | |
| 1705 (setq forms--total-records numrec) | |
| 4790 | 1706 (message "Warning: number of records changed to %d" forms--total-records))) |
| 276 | 1707 (forms-jump-record forms--total-records)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
1708 |
| 276 | 1709 ;;; Other commands |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1710 |
| 4790 | 1711 (defun forms-toggle-read-only (arg) |
| 1712 "Toggles read-only mode of a forms mode buffer. | |
| 1713 With an argument, enables read-only mode if the argument is positive. | |
|
13984
c045b6e55d08
(forms-toggle-read-only, forms-enumerate): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13569
diff
changeset
|
1714 Otherwise enables edit mode if the visited file is writable." |
| 4790 | 1715 |
| 1716 (interactive "P") | |
| 1717 | |
| 1718 (if (if arg | |
| 1719 ;; Negative arg means switch it off. | |
| 1720 (<= (prefix-numeric-value arg) 0) | |
| 1721 ;; No arg means toggle. | |
| 1722 forms-read-only) | |
| 276 | 1723 |
| 4790 | 1724 ;; Enable edit mode, if possible. |
| 1725 (let ((ro forms-read-only)) | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1726 (if (with-current-buffer forms--file-buffer |
| 4790 | 1727 buffer-read-only) |
| 1728 (progn | |
| 1729 (setq forms-read-only t) | |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1730 (message "No write access to `%s'" forms-file)) |
| 4790 | 1731 (setq forms-read-only nil)) |
| 1732 (if (equal ro forms-read-only) | |
| 1733 nil | |
| 1734 (forms-mode))) | |
| 1735 | |
| 1736 ;; Enable view mode. | |
| 1737 (if forms-read-only | |
| 276 | 1738 nil |
| 4790 | 1739 (forms--checkmod) ; sync |
| 1740 (setq forms-read-only t) | |
| 276 | 1741 (forms-mode)))) |
| 1742 | |
| 1743 ;; Sample: | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1744 ;; (defun my-new-record-filter (the-fields) |
| 276 | 1745 ;; ;; numbers are relative to 1 |
| 1746 ;; (aset the-fields 4 (current-time-string)) | |
| 1747 ;; (aset the-fields 6 (user-login-name)) | |
| 1748 ;; the-list) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1749 ;; (setq forms-new-record-filter 'my-new-record-filter) |
| 276 | 1750 |
| 1751 (defun forms-insert-record (arg) | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1752 "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
|
1753 With ARG: store the record after the current one. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1754 If `forms-new-record-filter' contains the name of a function, |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1755 it is called to fill (some of) the fields with default values. |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1756 If `forms-insert-after is non-nil, the default behavior is to insert |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1757 after the current record." |
| 276 | 1758 |
| 1759 (interactive "P") | |
| 1760 | |
| 4790 | 1761 (if forms-read-only |
| 1762 (error "")) | |
| 1763 | |
|
14732
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1764 (let (ln the-list the-record) |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1765 |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1766 (if (or (and arg forms-insert-after) |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1767 (and (not arg) (not forms-insert-after))) |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1768 (setq ln forms--current-record) |
|
6bd77cce44a6
(forms-insert-after): New variable. Non-nil means: inserts of new
Johan Vromans <jvromans@squirrel.nl>
parents:
14421
diff
changeset
|
1769 (setq ln (1+ forms--current-record))) |
| 276 | 1770 |
| 1771 (forms--checkmod) | |
| 4790 | 1772 (if forms-new-record-filter |
| 276 | 1773 ;; As a service to the user, we add a zeroth element so she |
| 1774 ;; can use the same indices as in the forms definition. | |
| 1775 (let ((the-fields (make-vector (1+ forms-number-of-fields) ""))) | |
| 4790 | 1776 (setq the-fields (funcall forms-new-record-filter the-fields)) |
| 276 | 1777 (setq the-list (cdr (append the-fields nil)))) |
| 1778 (setq the-list (make-list forms-number-of-fields ""))) | |
| 1779 | |
| 1780 (setq the-record | |
| 1781 (mapconcat | |
| 1782 'identity | |
| 1783 the-list | |
| 1784 forms-field-sep)) | |
| 1785 | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1786 (with-current-buffer forms--file-buffer |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1787 (forms--goto-record ln) |
| 276 | 1788 (open-line 1) |
| 1789 (insert the-record) | |
| 1790 (beginning-of-line)) | |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1791 |
| 276 | 1792 (setq forms--current-record ln)) |
| 1793 | |
| 1794 (setq forms--total-records (1+ forms--total-records)) | |
| 1795 (forms-jump-record forms--current-record)) | |
| 1796 | |
| 1797 (defun forms-delete-record (arg) | |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
1798 "Deletes a record. With a prefix argument: don't ask." |
| 276 | 1799 (interactive "P") |
| 4790 | 1800 |
| 1801 (if forms-read-only | |
| 1802 (error "")) | |
| 1803 | |
| 276 | 1804 (forms--checkmod) |
| 1805 (if (or arg | |
| 1806 (y-or-n-p "Really delete this record? ")) | |
| 1807 (let ((ln forms--current-record)) | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1808 (with-current-buffer forms--file-buffer |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1809 (forms--goto-record ln) |
|
4723
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1810 ;; Use delete-region instead of kill-region, to avoid |
|
6a3f5f51897b
Change typos in comments.
Richard M. Stallman <rms@gnu.org>
parents:
4121
diff
changeset
|
1811 ;; 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
|
1812 (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
|
1813 (progn (beginning-of-line 2) (point)))) |
| 276 | 1814 (setq forms--total-records (1- forms--total-records)) |
| 1815 (if (> forms--current-record forms--total-records) | |
| 1816 (setq forms--current-record forms--total-records)) | |
| 1817 (forms-jump-record forms--current-record))) | |
| 1818 (message "")) | |
| 1819 | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1820 (defun forms-search-forward (regexp) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1821 "Search forward for record containing REGEXP." |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1822 (interactive |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1823 (list (read-string (concat "Search forward for" |
| 276 | 1824 (if forms--search-regexp |
| 1825 (concat " (" | |
| 1826 forms--search-regexp | |
| 1827 ")")) | |
| 1828 ": ")))) | |
| 1829 (if (equal "" regexp) | |
| 1830 (setq regexp forms--search-regexp)) | |
| 1831 (forms--checkmod) | |
| 1832 | |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1833 (let (the-line the-record here) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1834 (with-current-buffer forms--file-buffer |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1835 (end-of-line) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1836 (setq here (point)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1837 (if (or (re-search-forward regexp nil t) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1838 (and (> here (point-min)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1839 (progn |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1840 (goto-char (point-min)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1841 (re-search-forward regexp here t)))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1842 (progn |
| 276 | 1843 (setq the-record (forms--get-record)) |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1844 (setq the-line (1+ (count-lines (point-min) (point)))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1845 (if (< (point) here) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1846 (message "Wrapped"))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1847 (goto-char here) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1848 (error "Search failed: %s" regexp))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1849 (setq forms--current-record the-line) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1850 (forms--show-record the-record)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1851 (re-search-forward regexp nil t) |
| 276 | 1852 (setq forms--search-regexp regexp)) |
| 1853 | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1854 (defun forms-search-backward (regexp) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1855 "Search backward for record containing REGEXP." |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1856 (interactive |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1857 (list (read-string (concat "Search backward for" |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1858 (if forms--search-regexp |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1859 (concat " (" |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1860 forms--search-regexp |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1861 ")")) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1862 ": ")))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1863 (if (equal "" regexp) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1864 (setq regexp forms--search-regexp)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1865 (forms--checkmod) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1866 |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1867 (let (the-line the-record here) |
|
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1868 (with-current-buffer forms--file-buffer |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1869 (beginning-of-line) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1870 (setq here (point)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1871 (if (or (re-search-backward regexp nil t) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1872 (and (< (point) (point-max)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1873 (progn |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1874 (goto-char (point-max)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1875 (re-search-backward regexp here t)))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1876 (progn |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1877 (setq the-record (forms--get-record)) |
|
18223
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1878 (setq the-line (1+ (count-lines (point-min) (point)))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1879 (if (> (point) here) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1880 (message "Wrapped"))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1881 (goto-char here) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1882 (error "Search failed: %s" regexp))) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1883 (setq forms--current-record the-line) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1884 (forms--show-record the-record)) |
|
186381dc815d
(forms-mode, forms--process-format-list)
Richard M. Stallman <rms@gnu.org>
parents:
18215
diff
changeset
|
1885 (re-search-forward regexp nil t) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1886 (setq forms--search-regexp regexp)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1887 |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1888 (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
|
1889 "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
|
1890 It saves the data buffer instead of the forms buffer. |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1891 Calls `forms-write-file-filter' before, and `forms-read-file-filter' |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1892 after writing out the data." |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1893 (interactive "p") |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1894 (forms--checkmod) |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1895 (let ((write-file-filter forms-write-file-filter) |
|
24794
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1896 (read-file-filter forms-read-file-filter) |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1897 (cur forms--current-record)) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1898 (with-current-buffer forms--file-buffer |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1899 (let ((inhibit-read-only t)) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1900 ;; Write file hooks are run via write-file-functions. |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1901 ;; (if write-file-filter |
|
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
1902 ;; (save-excursion |
|
24794
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1903 ;; (run-hooks 'write-file-filter))) |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1904 |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1905 ;; If they have a write-file-filter, force the buffer to be |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1906 ;; saved even if it doesn't seem to be changed. First, they |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1907 ;; might have changed the write-file-filter; and second, if |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1908 ;; save-buffer does nothing, write-file-filter won't get run, |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1909 ;; and then read-file-filter will be mightily confused. |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1910 (or (null write-file-filter) |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1911 (set-buffer-modified-p t)) |
|
8344
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1912 (save-buffer args) |
|
e206050c7d51
(forms-read-file-filter): new hook function to
Richard M. Stallman <rms@gnu.org>
parents:
8272
diff
changeset
|
1913 (if read-file-filter |
|
18215
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1914 (save-excursion |
|
2df40b8771ac
Use `error' where possible to signal errors.
Karl Heuer <kwzh@gnu.org>
parents:
14732
diff
changeset
|
1915 (run-hooks 'read-file-filter))) |
|
24794
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1916 (set-buffer-modified-p nil))) |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1917 ;; Make sure we end up with the same record number as we started. |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1918 ;; Since read-file-filter may perform arbitrary transformations on |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1919 ;; the data buffer contents, save-excursion is not enough. |
|
ce4f0f55e174
forms-save-buffer): Call set-buffer-modified-p to
Eli Zaretskii <eliz@gnu.org>
parents:
24655
diff
changeset
|
1920 (forms-jump-record cur)) |
|
7863
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1921 t) |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1922 |
|
c4adb7401604
(forms-mode): Plug security hole by disabling `eval-buffer' unless
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1923 (defun forms--revert-buffer (&optional arg noconfirm) |
| 276 | 1924 "Reverts current form to un-modified." |
| 1925 (interactive "P") | |
| 1926 (if (or noconfirm | |
| 1927 (yes-or-no-p "Revert form to unmodified? ")) | |
| 1928 (progn | |
| 1929 (set-buffer-modified-p nil) | |
| 1930 (forms-jump-record forms--current-record)))) | |
| 1931 | |
| 1932 (defun forms-next-field (arg) | |
| 1933 "Jump to ARG-th next field." | |
| 1934 (interactive "p") | |
| 1935 | |
| 1936 (let ((i 0) | |
| 1937 (here (point)) | |
| 1938 there | |
|
11557
63406705a7e2
(forms--make-format-elt-using-text-properties)
Richard M. Stallman <rms@gnu.org>
parents:
10348
diff
changeset
|
1939 (cnt 0) |
|
63406705a7e2
(forms--make-format-elt-using-text-properties)
Richard M. Stallman <rms@gnu.org>
parents:
10348
diff
changeset
|
1940 (inhibit-point-motion-hooks t)) |
| 276 | 1941 |
| 1942 (if (zerop arg) | |
| 1943 (setq cnt 1) | |
| 1944 (setq cnt (+ cnt arg))) | |
| 1945 | |
| 1946 (if (catch 'done | |
|
4121
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
1947 (while (< i (length forms--markers)) |
| 276 | 1948 (if (or (null (setq there (aref forms--markers i))) |
| 1949 (<= there here)) | |
| 1950 nil | |
| 1951 (if (<= (setq cnt (1- cnt)) 0) | |
| 1952 (progn | |
| 1953 (goto-char there) | |
| 1954 (throw 'done t)))) | |
| 1955 (setq i (1+ i)))) | |
| 1956 nil | |
| 1957 (goto-char (aref forms--markers 0))))) | |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
1958 |
| 4790 | 1959 (defun forms-prev-field (arg) |
| 1960 "Jump to ARG-th previous field." | |
| 1961 (interactive "p") | |
| 1962 | |
| 1963 (let ((i (length forms--markers)) | |
| 1964 (here (point)) | |
| 1965 there | |
|
11557
63406705a7e2
(forms--make-format-elt-using-text-properties)
Richard M. Stallman <rms@gnu.org>
parents:
10348
diff
changeset
|
1966 (cnt 0) |
|
63406705a7e2
(forms--make-format-elt-using-text-properties)
Richard M. Stallman <rms@gnu.org>
parents:
10348
diff
changeset
|
1967 (inhibit-point-motion-hooks t)) |
| 4790 | 1968 |
| 1969 (if (zerop arg) | |
| 1970 (setq cnt 1) | |
| 1971 (setq cnt (+ cnt arg))) | |
| 1972 | |
| 1973 (if (catch 'done | |
| 1974 (while (> i 0) | |
| 1975 (setq i ( 1- i)) | |
| 1976 (if (or (null (setq there (aref forms--markers i))) | |
| 1977 (>= there here)) | |
| 1978 nil | |
| 1979 (if (<= (setq cnt (1- cnt)) 0) | |
| 1980 (progn | |
| 1981 (goto-char there) | |
| 1982 (throw 'done t)))))) | |
| 1983 nil | |
| 1984 (goto-char (aref forms--markers (1- (length forms--markers))))))) | |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1985 |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1986 (defun forms-print () |
|
63400
00398c07d65c
(forms--intuit-from-file): Fix reference to `forms-number-of-fields' in error message.
Juanma Barranquero <lekktu@gmail.com>
parents:
62728
diff
changeset
|
1987 "Send the records to the printer with `print-buffer', one record per page." |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1988 (interactive) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1989 (let ((inhibit-read-only t) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1990 (save-record forms--current-record) |
|
24077
b5abeb8ab500
(forms--show-record): Convert integers to string
Richard M. Stallman <rms@gnu.org>
parents:
23382
diff
changeset
|
1991 (total-nb-records forms--total-records) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1992 (nb-record 1) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1993 (record nil)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1994 (while (<= nb-record forms--total-records) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1995 (forms-jump-record nb-record) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1996 (setq record (buffer-string)) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
1997 (with-current-buffer (get-buffer-create "*forms-print*") |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1998 (goto-char (buffer-end 1)) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
1999 (insert record) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2000 (setq buffer-read-only nil) |
|
24077
b5abeb8ab500
(forms--show-record): Convert integers to string
Richard M. Stallman <rms@gnu.org>
parents:
23382
diff
changeset
|
2001 (if (< nb-record total-nb-records) |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2002 (insert "\n\n"))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2003 (setq nb-record (1+ nb-record))) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
2004 (with-current-buffer "*forms-print*" |
|
10346
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2005 (print-buffer) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2006 (set-buffer-modified-p nil) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2007 (kill-buffer (current-buffer))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2008 (forms-jump-record save-record))) |
|
a6018b04fb9d
Change forms-search to forms-search-forward, and add
Johan Vromans <jvromans@squirrel.nl>
parents:
8352
diff
changeset
|
2009 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2010 ;;; |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2011 ;;; Special service |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2012 ;;; |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2013 (defun forms-enumerate (the-fields) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
2014 "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
|
2015 The first symbol gets number 1, the second 2 and so on. |
|
13984
c045b6e55d08
(forms-toggle-read-only, forms-enumerate): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13569
diff
changeset
|
2016 It returns the highest number. |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2017 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2018 Usage: (setq forms-number-of-fields |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2019 (forms-enumerate |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2020 '(field1 field2 field2 ...)))" |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2021 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2022 (let ((the-index 0)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2023 (while the-fields |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2024 (setq the-index (1+ the-index)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2025 (let ((el (car-safe the-fields))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2026 (setq the-fields (cdr-safe the-fields)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2027 (set el the-index))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2028 the-index)) |
|
3697
994bb6dc9249
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
307
diff
changeset
|
2029 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2030 ;;; Debugging |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
2031 |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2032 (defvar forms--debug nil |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2033 "*Enables forms-mode debugging if not nil.") |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2034 |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2035 (defun forms--debug (&rest args) |
|
3941
93a7a7b97030
Add e-mail address and version info.
Richard M. Stallman <rms@gnu.org>
parents:
3828
diff
changeset
|
2036 "Internal debugging routine." |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2037 (if forms--debug |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2038 (let ((ret nil)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2039 (while args |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2040 (let ((el (car-safe args))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2041 (setq args (cdr-safe args)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2042 (if (stringp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2043 (setq ret (concat ret el)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2044 (setq ret (concat ret (prin1-to-string el) " = ")) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2045 (if (boundp el) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2046 (let ((vel (eval el))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2047 (setq ret (concat ret (prin1-to-string vel) "\n"))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2048 (setq ret (concat ret "<unbound>" "\n"))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2049 (if (fboundp el) |
|
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49169
diff
changeset
|
2050 (setq ret (concat ret (prin1-to-string (symbol-function el)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2051 "\n")))))) |
|
51325
6ef863c4a5d8
(forms-mode-hook): Rename from forms-mode-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51282
diff
changeset
|
2052 (with-current-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
|
2053 (if (zerop (buffer-size)) |
|
25d32add267c
Rewritten by Vromans to use text properties.
Richard M. Stallman <rms@gnu.org>
parents:
3979
diff
changeset
|
2054 (emacs-lisp-mode)) |
|
307
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2055 (goto-char (point-max)) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2056 (insert ret))))) |
|
7fede845e304
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
276
diff
changeset
|
2057 |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
35968
diff
changeset
|
2058 ;;; forms.el ends here |
