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