annotate lisp/packages/array.el @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 0293115a14e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; array.el --- array editing commands for XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1987 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author David M. Brown
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Maintainer: FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: extensions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
25 ;;; Synched up with: FSF 19.34.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; Commands for editing a buffer interpreted as a rectangular array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; or matrix of whitespace-separated strings. You specify the array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; dimensions and some other parameters at startup time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; Written by dmb%morgoth@harvard.harvard.edu (address is old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; (David M. Brown at Goldberg-Zoino & Associates, Inc.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; Thanks to cph@kleph.ai.mit.edu for assistance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; To do:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; Smooth initialization process by grokking local variables list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; at end of buffer or parsing buffer using whitespace as delimiters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; Make 'array-copy-column-right faster.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;; Internal information functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defun array-cursor-in-array-range ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 "Returns t if the cursor is in a valid array cell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Its ok to be on a row number line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (let ((columns-last-line (% max-column columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;; Requires buffer-line and buffer-column to be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (not (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; The cursor is too far to the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (>= buffer-column line-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; The cursor is below the last row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (>= buffer-line (* lines-per-row max-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; The cursor is on the last line of the row, the line is smaller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;; than the others, and the cursor is after the last array column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; on the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (and (zerop (% (1+ buffer-line) lines-per-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (not (zerop columns-last-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (>= buffer-column (* columns-last-line field-width)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (defun array-current-row ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 "Return the array row of the field in which the cursor is located."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;; Requires buffer-line and buffer-column to be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (and (array-cursor-in-array-range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (1+ (floor buffer-line lines-per-row))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (defun array-current-column ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 "Return the array column of the field in which the cursor is located."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; Requires buffer-line and buffer-column to be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (and (array-cursor-in-array-range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ;; It's not okay to be on a row number line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (not (and rows-numbered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (zerop (% buffer-line lines-per-row))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; Array columns due to line differences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (* columns-per-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (if rows-numbered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (1- (% buffer-line lines-per-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (% buffer-line lines-per-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ;; Array columns on the current line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (1+ (floor buffer-column field-width)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (defun array-update-array-position (&optional a-row a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 "Set `array-row' and `array-column' to their current values or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 to the optional arguments A-ROW and A-COLUMN."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ;; Requires that buffer-line and buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (setq array-row (or a-row (array-current-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 array-column (or a-column (array-current-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (defun array-update-buffer-position ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 "Set buffer-line and buffer-column to their current values."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (setq buffer-line (current-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 buffer-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;;; Information commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (defun array-what-position ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 "Display the row and column in which the cursor is positioned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (let ((buffer-line (current-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (buffer-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (message (format "Array row: %s Array column: %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (prin1-to-string (array-current-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (prin1-to-string (array-current-column))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (defun array-display-local-variables ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 "Display the current state of the local variables in the minibuffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (let ((buf (buffer-name (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (with-output-to-temp-buffer "*Local Variables*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (buffer-disable-undo standard-output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (terpri)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (princ (format " Buffer: %s\n\n" buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (princ (format " max-row: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (prin1-to-string max-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (princ (format " max-column: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (prin1-to-string max-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (princ (format " columns-per-line: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (prin1-to-string columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (princ (format " field-width: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (prin1-to-string field-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (princ (format " rows-numbered: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (prin1-to-string rows-numbered)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (princ (format " lines-per-row: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (prin1-to-string lines-per-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (princ (format " line-length: %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (prin1-to-string line-length))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;;; Internal movement functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defun array-beginning-of-field (&optional go-there)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 "Return the column of the beginning of the current field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Optional argument GO-THERE, if non-nil, means go there too."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 ;; Requires that buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (let ((goal-column (- buffer-column (% buffer-column field-width))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (if go-there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (move-to-column-untabify goal-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 goal-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (defun array-end-of-field (&optional go-there)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 "Return the column of the end of the current array field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 If optional argument GO-THERE is non-nil, go there too."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ;; Requires that buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (let ((goal-column (+ (- buffer-column (% buffer-column field-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 field-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (if go-there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (move-to-column-untabify goal-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 goal-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (defun array-move-to-cell (a-row a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 "Move to array row A-ROW and array column A-COLUMN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Leave point at the beginning of the field and return the new buffer column."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (let ((goal-line (+ (* lines-per-row (1- a-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (if rows-numbered 1 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (floor (1- a-column) columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (goal-column (* field-width (% (1- a-column) columns-per-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (forward-line goal-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (move-to-column-untabify goal-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (defun array-move-to-row (a-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 "Move to array row A-ROW preserving the current array column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 Leave point at the beginning of the field and return the new array row."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; Requires that buffer-line and buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (let ((goal-line (+ (* lines-per-row (1- a-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (% buffer-line lines-per-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (goal-column (- buffer-column (% buffer-column field-width))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (forward-line (- goal-line buffer-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (move-to-column-untabify goal-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 a-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (defun array-move-to-column (a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "Move to array column A-COLUMN preserving the current array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Leave point at the beginning of the field and return the new array column."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ;; Requires that buffer-line and buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (let ((goal-line (+ (- buffer-line (% buffer-line lines-per-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (if rows-numbered 1 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (floor (1- a-column) columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (goal-column (* field-width (% (1- a-column) columns-per-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (forward-line (- goal-line buffer-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (move-to-column-untabify goal-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 a-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defun array-move-one-row (sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 "Move one array row in direction SIGN (1 or -1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 Leave point at the beginning of the field and return the new array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 If requested to move beyond the array bounds, signal an error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;; Requires that buffer-line and buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (let ((goal-column (array-beginning-of-field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (array-row (or (array-current-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (error "Cursor is not in a valid array cell."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (cond ((and (= array-row max-row) (= sign 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (error "End of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 ((and (= array-row 1) (= sign -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (error "Beginning of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (forward-line (* sign lines-per-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (move-to-column-untabify goal-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (+ array-row sign))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (defun array-move-one-column (sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 "Move one array column in direction SIGN (1 or -1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 Leave point at the beginning of the field and return the new array column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 If requested to move beyond the array bounds, signal an error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ;; Requires that buffer-line and buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (let ((array-column (or (array-current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (error "Cursor is not in a valid array cell."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (cond ((and (= array-column max-column) (= sign 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (error "End of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 ((and (= array-column 1) (= sign -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (error "Beginning of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 ;; Going backward from first column on the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 ((and (= sign -1) (= 1 (% array-column columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (move-to-column-untabify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (* field-width (1- columns-per-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ;; Going forward from last column on the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 ((and (= sign 1) (zerop (% array-column columns-per-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 ;; Somewhere in the middle of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (move-to-column-untabify (+ (array-beginning-of-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (* field-width sign)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (+ array-column sign)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (defun array-normalize-cursor ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 "Move the cursor to the first non-whitespace character in the field and,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 if necessary, scroll horizontally to keep the cursor in view."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ;; Assumes point is at the beginning of the field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (let ((buffer-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (skip-chars-forward " \t"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (1- (save-excursion (array-end-of-field t) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (array-maybe-scroll-horizontally)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (defun array-maybe-scroll-horizontally ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 "If necessary, scroll horizontally to keep the cursor in view."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ;; This is only called from array-normalize-cursor so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; buffer-column will always be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (let ((w-hscroll (window-hscroll))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (w-width (window-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 ((and (>= buffer-column w-hscroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (<= buffer-column (+ w-hscroll w-width)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ;; It's already visible. Do nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ((> buffer-column (+ w-hscroll w-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; It's to the right. Scroll left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (scroll-left (- (- buffer-column w-hscroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (/ w-width 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; It's to the left. Scroll right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (scroll-right (+ (- w-hscroll buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (/ w-width 2)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;;; Movement commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (defun array-next-row (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 "Move down one array row, staying in the current array column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 If optional ARG is given, move down ARG array rows."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (let ((buffer-line (current-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (buffer-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (if (= (abs arg) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (array-move-one-row arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (array-move-to-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (limit-index (+ (or (array-current-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (error "Cursor is not in an array cell."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 max-row))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (defun array-previous-row (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 "Move up one array row, staying in the current array column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 If optional ARG is given, move up ARG array rows."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (array-next-row (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (defun array-forward-column (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 "Move forward one field, staying in the current array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 If optional ARG is given, move forward ARG array columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 If necessary, keep the cursor in the window by scrolling right or left."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (let ((buffer-line (current-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (buffer-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (if (= (abs arg) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (array-move-one-column arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (array-move-to-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (limit-index (+ (or (array-current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (error "Cursor is not in an array cell."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 max-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (defun array-backward-column (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 "Move backward one field, staying in the current array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 If optional ARG is given, move backward ARG array columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 If necessary, keep the cursor in the window by scrolling right or left."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (array-forward-column (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (defun array-goto-cell (a-row a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 "Go to array row A-ROW and array column A-COLUMN."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (interactive "nArray row: \nnArray column: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (array-move-to-cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (limit-index a-row max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (limit-index a-column max-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ;;; Internal copying functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (defun array-field-string ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 "Return the field string at the current cursor location."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;; Requires that buffer-column be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (save-excursion (array-beginning-of-field t) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (save-excursion (array-end-of-field t) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (defun array-copy-once-vertically (sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 "Copy the current field into one array row in direction SIGN (1 or -1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 Leave point at the beginning of the field and return the new array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 If requested to move beyond the array bounds, signal an error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 ;; Requires that buffer-line, buffer-column, and copy-string be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (let ((a-row (array-move-one-row sign)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (delete-region (point) (save-excursion (array-end-of-field t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (insert copy-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (move-to-column buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 a-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (defun array-copy-once-horizontally (sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 "Copy the current field into one array column in direction SIGN (1 or -1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 Leave point at the beginning of the field and return the new array column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 If requested to move beyond the array bounds, signal an error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ;; Requires that buffer-line, buffer-column, and copy-string be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (let ((a-column (array-move-one-column sign)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (delete-region (point) (save-excursion (array-end-of-field t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (insert copy-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (move-to-column buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 a-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (defun array-copy-to-row (a-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 "Copy the current field vertically into every cell up to and including A-ROW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 Leave point at the beginning of the field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 ;; Requires that buffer-line, buffer-column, array-row, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 ;; copy-string be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (let* ((num (- a-row array-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (count (abs num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (sign (if (zerop count) () (/ num count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (while (> count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (array-move-one-row sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (delete-region (point) (save-excursion (array-end-of-field t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (insert copy-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (move-to-column buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (setq count (1- count)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (defun array-copy-to-column (a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 "Copy the current field horizontally into every cell up to and including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 A-COLUMN. Leave point at the beginning of the field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 ;; Requires that buffer-line, buffer-column, array-column, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 ;; copy-string be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (let* ((num (- a-column array-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (count (abs num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (sign (if (zerop count) () (/ num count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (while (> count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (array-move-one-column sign)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (delete-region (point) (save-excursion (array-end-of-field t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (insert copy-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (move-to-column buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (setq count (1- count)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (defun array-copy-to-cell (a-row a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 "Copy the current field into the cell at A-ROW, A-COLUMN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 Leave point at the beginning of the field."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ;; Requires that copy-string be current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (array-move-to-cell a-row a-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (delete-region (point) (save-excursion (array-end-of-field t) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (insert copy-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (move-to-column buffer-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 ;;; Commands for copying.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (defun array-copy-down (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 "Copy the current field one array row down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 If optional ARG is given, copy down through ARG array rows."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (let* ((buffer-line (current-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (buffer-column (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (array-row (or (array-current-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (error "Cursor is not in a valid array cell.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (copy-string (array-field-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (if (= (abs arg) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (array-copy-once-vertically arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (array-copy-to-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (limit-index (+ array-row arg) max-row))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (defun array-copy-up (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 "Copy the current field one array row up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 If optional ARG is given, copy up through ARG array rows."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (array-copy-down (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (defun array-copy-forward (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 "Copy the current field one array column to the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 If optional ARG is given, copy through ARG array columns to the right."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (let* ((buffer-line (current-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (buffer-column (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (array-column (or (array-current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (error "Cursor is not in a valid array cell.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (copy-string (array-field-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (if (= (abs arg) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (array-copy-once-horizontally arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (array-copy-to-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (limit-index (+ array-column arg) max-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (defun array-copy-backward (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 "Copy the current field one array column to the left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 If optional ARG is given, copy through ARG array columns to the left."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (array-copy-forward (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (defun array-copy-column-forward (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 "Copy the entire current column in to the column to the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 If optional ARG is given, copy through ARG array columns to the right."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (array-update-array-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (if (not array-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (error "Cursor is not in a valid array cell."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (message "Working...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 (let ((this-row 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (while (< this-row max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (setq this-row (1+ this-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (array-move-to-cell this-row array-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (let ((copy-string (array-field-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (if (= (abs arg) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (array-copy-once-horizontally arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (array-copy-to-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (limit-index (+ array-column arg) max-column))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (message "Working...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (array-move-to-row array-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (defun array-copy-column-backward (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 "Copy the entire current column one column to the left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 If optional ARG is given, copy through ARG columns to the left."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (array-copy-column-forward (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (defun array-copy-row-down (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 "Copy the entire current row one row down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 If optional ARG is given, copy through ARG rows down."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (array-update-array-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (if (not array-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (error "Cursor is not in a valid array cell."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 ((and (= array-row 1) (= arg -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (error "Beginning of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 ((and (= array-row max-row) (= arg 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (error "End of array."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (let* ((copy-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (save-excursion (array-move-to-cell array-row 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (save-excursion (array-move-to-cell array-row max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (this-row array-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (goal-row (limit-index (+ this-row arg) max-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (num (- goal-row this-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (count (abs num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (sign (if (not (zerop count)) (/ num count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (while (> count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (setq this-row (+ this-row sign))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (array-move-to-cell this-row 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (delete-region (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (array-move-to-cell this-row max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (insert copy-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (setq count (1- count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (array-move-to-cell goal-row (or array-column 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (array-normalize-cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (defun array-copy-row-up (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 "Copy the entire current array row into the row above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 If optional ARG is given, copy through ARG rows up."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (array-copy-row-down (- arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (defun array-fill-rectangle ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 "Copy the field at mark into every cell between mark and point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ;; Bind arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (let ((p-row (or (array-current-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (error "Cursor is not in a valid array cell.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (p-column (or (array-current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (error "Cursor is not in a valid array cell.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (m-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (exchange-point-and-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (or (array-current-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (error "Mark is not in a valid array cell."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (m-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (exchange-point-and-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (or (array-current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (error "Mark is not in a valid array cell.")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (message "Working...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (let ((top-row (min m-row p-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (bottom-row (max m-row p-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (left-column (min m-column p-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (right-column (max m-column p-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 ;; Do the first row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (let ((copy-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (array-move-to-cell m-row m-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (array-field-string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (array-copy-to-cell top-row left-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (array-update-array-position top-row left-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (array-copy-to-column right-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 ;; Do the rest of the rows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (array-move-to-cell top-row left-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (let ((copy-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (array-move-to-cell top-row right-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (setq buffer-column (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (array-end-of-field t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (this-row top-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (while (/= this-row bottom-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (setq this-row (1+ this-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (array-move-to-cell this-row left-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (delete-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (array-move-to-cell this-row right-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (setq buffer-column (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (array-end-of-field t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (insert copy-string)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (message "Working...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (array-goto-cell p-row p-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 ;;; Reconfiguration of the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (defun array-make-template ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 "Create the template of an array."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ;; If there is a conflict between field-width and init-string, resolve it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (let ((check t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (while check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (setq init-field (read-input "Initial field value: "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (setq len (length init-field))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (if (/= len field-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (if (y-or-n-p (format "Change field width to %d? " len))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (progn (setq field-width len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (setq check nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (setq check nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (message "Working...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (let ((this-row 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ;; Loop through the rows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (while (<= this-row max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (if rows-numbered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (insert (format "%d:\n" this-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (let ((this-column 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 ;; Loop through the columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (while (<= this-column max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (insert init-field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (if (and (zerop (% this-column columns-per-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (/= this-column max-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (newline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (setq this-column (1+ this-column))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (setq this-row (1+ this-row))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (newline)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (message "Working...done")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (array-goto-cell 1 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (defun array-reconfigure-rows (new-columns-per-line new-rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 "Reconfigure the state of `rows-numbered' and `columns-per-line'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 NEW-COLUMNS-PER-LINE is the desired value of `columns-per-line' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 NEW-ROWS-NUMBERED (a character, either ?y or ?n) is the desired value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 of rows-numbered."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (interactive "nColumns per line: \ncRows numbered? (y or n) ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ;; Check on new-columns-per-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (let ((check t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (while check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (if (and (>= new-columns-per-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (<= new-columns-per-line max-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (setq check nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (setq new-columns-per-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (string-to-int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (read-input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (format "Columns per line (1 - %d): " max-column)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 ;; Check on new-rows-numbered. It has to be done this way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ;; because interactive does not have y-or-n-p.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 ((eq new-rows-numbered ?y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (setq new-rows-numbered t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 ((eq new-rows-numbered ?n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (setq new-rows-numbered nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (setq new-rows-numbered (y-or-n-p "Rows numbered? "))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (message "Working...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (array-update-buffer-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (let* ((main-buffer (buffer-name (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (temp-buffer (make-temp-name "Array"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (temp-max-row max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (temp-max-column max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (old-rows-numbered rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (old-columns-per-line columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (old-lines-per-row lines-per-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (old-field-width field-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (old-line-length line-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (this-row 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (array-update-array-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 ;; Do the cutting in a temporary buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (copy-to-buffer temp-buffer (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (set-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (while (<= this-row temp-max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ;; Deal with row number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 ((or (and old-rows-numbered new-rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (and (not old-rows-numbered) (not new-rows-numbered)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 ;; Nothing is changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ((and old-rows-numbered (not new-rows-numbered))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ;; Delete the row number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (kill-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 ;; Add the row number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (insert-string (format "%d:\n" this-row))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ;; Deal with the array columns in this row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 ((= old-columns-per-line new-columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 ;; Nothing is changed. Go to the next row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (forward-line (- old-lines-per-row (if old-rows-numbered 1 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 ;; First expand the row. Then cut it up into new pieces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (let ((newlines-to-be-removed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (floor (1- temp-max-column) old-columns-per-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (newlines-removed 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (newlines-to-be-added
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (floor (1- temp-max-column) new-columns-per-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (newlines-added 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (while (< newlines-removed newlines-to-be-removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (move-to-column-untabify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (* (1+ newlines-removed) old-line-length))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (kill-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (setq newlines-removed (1+ newlines-removed)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (while (< newlines-added newlines-to-be-added)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (move-to-column-untabify (* old-field-width new-columns-per-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (setq newlines-added (1+ newlines-added)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (forward-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (setq this-row (1+ this-row)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (set-buffer main-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (insert-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 ;; Update local variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (setq columns-per-line new-columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (setq rows-numbered new-rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (setq line-length (* old-field-width new-columns-per-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (setq lines-per-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (+ (floor (1- temp-max-column) new-columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (if new-rows-numbered 2 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (array-goto-cell (or array-row 1) (or array-column 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (kill-buffer temp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (message "Working...done"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (defun array-expand-rows ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 "Expand the rows so each fits on one line and remove row numbers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (array-reconfigure-rows max-column ?n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ;;; Utilities.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (defun limit-index (index limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (cond ((< index 1) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 ((> index limit) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (t index)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (defun xor (pred1 pred2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 "Returns the logical exclusive or of predicates PRED1 and PRED2."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (and (or pred1 pred2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (not (and pred1 pred2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (defun current-line ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 "Return the current buffer line at point. The first line is 0."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (count-lines (point-min) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (defun move-to-column-untabify (column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 "Move to COLUMN on the current line, untabifying if necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 Return COLUMN."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (or (and (= column (move-to-column column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 ;; There is a tab in the way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (if respect-tabs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (error "There is a TAB character in the way.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (untabify-backward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (move-to-column column)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (defun untabify-backward ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 "Untabify the preceding tab."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (let ((start (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (untabify (point) start))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 ;;; Array mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (defvar array-mode-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 "Keymap used in array mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (if array-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (setq array-mode-map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 ;; Bind keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (define-key array-mode-map "\M-ad" 'array-display-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (define-key array-mode-map "\M-am" 'array-make-template)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (define-key array-mode-map "\M-ae" 'array-expand-rows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (define-key array-mode-map "\M-ar" 'array-reconfigure-rows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (define-key array-mode-map "\M-a=" 'array-what-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (define-key array-mode-map "\M-ag" 'array-goto-cell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (define-key array-mode-map "\M-af" 'array-fill-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (define-key array-mode-map "\C-n" 'array-next-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (define-key array-mode-map "\C-p" 'array-previous-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (define-key array-mode-map "\C-f" 'array-forward-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (define-key array-mode-map "\C-b" 'array-backward-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (define-key array-mode-map "\M-n" 'array-copy-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (define-key array-mode-map "\M-p" 'array-copy-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (define-key array-mode-map "\M-f" 'array-copy-forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (define-key array-mode-map "\M-b" 'array-copy-backward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (define-key array-mode-map "\M-\C-n" 'array-copy-row-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 (define-key array-mode-map "\M-\C-p" 'array-copy-row-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (define-key array-mode-map "\M-\C-f" 'array-copy-column-forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (define-key array-mode-map "\M-\C-b" 'array-copy-column-backward))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (put 'array-mode 'mode-class 'special)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (defun array-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 "Major mode for editing arrays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 Array mode is a specialized mode for editing arrays. An array is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 considered to be a two-dimensional set of strings. The strings are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 NOT recognized as integers or real numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 The array MUST reside at the top of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 TABs are not respected, and may be converted into spaces at any time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 Setting the variable 'respect-tabs to non-nil will prevent TAB conversion,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 but will cause many functions to give errors if they encounter one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 Upon entering array mode, you will be prompted for the values of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 several variables. Others will be calculated based on the values you
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
809 supply. These variables are all local to the buffer. Other buffers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 in array mode may have different values assigned to the variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 The variables are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Variables you assign:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 max-row: The number of rows in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 max-column: The number of columns in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 columns-per-line: The number of columns in the array per line of buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 field-width: The width of each field, in characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 rows-numbered: A logical variable describing whether to ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 row numbers in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 Variables which are calculated:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 line-length: The number of characters in a buffer line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 lines-per-row: The number of buffer lines used to display each row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 The following commands are available (an asterisk indicates it may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 take a numeric prefix argument):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 * \\<array-mode-map>\\[array-forward-column] Move forward one column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 * \\[array-backward-column] Move backward one column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 * \\[array-next-row] Move down one row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 * \\[array-previous-row] Move up one row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 * \\[array-copy-forward] Copy the current field into the column to the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 * \\[array-copy-backward] Copy the current field into the column to the left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 * \\[array-copy-down] Copy the current field into the row below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 * \\[array-copy-up] Copy the current field into the row above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 * \\[array-copy-column-forward] Copy the current column into the column to the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 * \\[array-copy-column-backward] Copy the current column into the column to the left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 * \\[array-copy-row-down] Copy the current row into the row below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 * \\[array-copy-row-up] Copy the current row into the row above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 \\[array-fill-rectangle] Copy the field at mark into every cell with row and column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 between that of point and mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 \\[array-what-position] Display the current array row and column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 \\[array-goto-cell] Go to a particular array cell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 \\[array-make-template] Make a template for a new array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 \\[array-reconfigure-rows] Reconfigure the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 \\[array-expand-rows] Expand the array (remove row numbers and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 newlines inside rows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 \\[array-display-local-variables] Display the current values of local variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 Entering array mode calls the function `array-mode-hook'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 ;; Number of rows in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (make-local-variable 'max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 ;; Number of columns in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (make-local-variable 'max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 ;; Number of array columns per line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (make-local-variable 'columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 ;; Width of a field in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (make-local-variable 'field-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 ;; Are rows numbered in the buffer?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (make-local-variable 'rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 ;; Length of a line in the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (make-local-variable 'line-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 ;; Number of lines per array row.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (make-local-variable 'lines-per-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 ;; Current line number of point in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (make-local-variable 'buffer-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 ;; Current column number of point in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (make-local-variable 'buffer-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 ;; Current array row location of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 (make-local-variable 'array-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 ;; Current array column location of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (make-local-variable 'array-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 ;; Current field string being copied.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (make-local-variable 'copy-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 ;; Should TAB conversion be prevented?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (make-local-variable 'respect-tabs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (setq respect-tabs nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (array-init-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (setq major-mode 'array-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (setq mode-name "Array")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (force-mode-line-update)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 (make-variable-buffer-local 'truncate-lines)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (setq truncate-lines t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (setq overwrite-mode 'overwrite-mode-textual)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (use-local-map array-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 (run-hooks 'array-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 ;;; Initialization functions. These are not interactive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (defun array-init-local-variables ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 "Initialize the variables associated with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 array in this buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (array-init-max-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (array-init-max-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (array-init-columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (array-init-field-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (array-init-rows-numbered)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (array-init-line-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (array-init-lines-per-row)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (message ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (defun array-init-max-row (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 "Initialize the value of max-row."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (setq max-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (or arg (string-to-int (read-input "Number of array rows: ")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (defun array-init-max-column (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 "Initialize the value of max-column."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (setq max-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (or arg (string-to-int (read-input "Number of array columns: ")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (defun array-init-columns-per-line (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 "Initialize the value of columns-per-line."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (setq columns-per-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (or arg (string-to-int (read-input "Array columns per line: ")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (defun array-init-field-width (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 "Initialize the value of field-width."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (setq field-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (or arg (string-to-int (read-input "Field width: ")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (defun array-init-rows-numbered (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 "Initialize the value of rows-numbered."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 (setq rows-numbered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (or arg (y-or-n-p "Rows numbered? "))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (defun array-init-line-length (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 "Initialize the value of line-length."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (setq line-length
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (or arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (* field-width columns-per-line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (defun array-init-lines-per-row (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 "Initialize the value of lines-per-row."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (setq lines-per-row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (or arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (+ (floor (1- max-column) columns-per-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (if rows-numbered 2 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 ;;; array.el ends here