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