Mercurial > hg > xemacs-beta
annotate lisp/lisp.el @ 665:fdefd0186b75
[xemacs-hg @ 2001-09-20 06:28:42 by ben]
The great integral types renaming.
The purpose of this is to rationalize the names used for various
integral types, so that they match their intended uses and follow
consist conventions, and eliminate types that were not semantically
different from each other.
The conventions are:
-- All integral types that measure quantities of anything are
signed. Some people disagree vociferously with this, but their
arguments are mostly theoretical, and are vastly outweighed by
the practical headaches of mixing signed and unsigned values,
and more importantly by the far increased likelihood of
inadvertent bugs: Because of the broken "viral" nature of
unsigned quantities in C (operations involving mixed
signed/unsigned are done unsigned, when exactly the opposite is
nearly always wanted), even a single error in declaring a
quantity unsigned that should be signed, or even the even more
subtle error of comparing signed and unsigned values and
forgetting the necessary cast, can be catastrophic, as
comparisons will yield wrong results. -Wsign-compare is turned
on specifically to catch this, but this tends to result in a
great number of warnings when mixing signed and unsigned, and
the casts are annoying. More has been written on this
elsewhere.
-- All such quantity types just mentioned boil down to EMACS_INT,
which is 32 bits on 32-bit machines and 64 bits on 64-bit
machines. This is guaranteed to be the same size as Lisp
objects of type `int', and (as far as I can tell) of size_t
(unsigned!) and ssize_t. The only type below that is not an
EMACS_INT is Hashcode, which is an unsigned value of the same
size as EMACS_INT.
-- Type names should be relatively short (no more than 10
characters or so), with the first letter capitalized and no
underscores if they can at all be avoided.
-- "count" == a zero-based measurement of some quantity. Includes
sizes, offsets, and indexes.
-- "bpos" == a one-based measurement of a position in a buffer.
"Charbpos" and "Bytebpos" count text in the buffer, rather than
bytes in memory; thus Bytebpos does not directly correspond to
the memory representation. Use "Membpos" for this.
-- "Char" refers to internal-format characters, not to the C type
"char", which is really a byte.
-- For the actual name changes, see the script below.
I ran the following script to do the conversion. (NOTE: This script
is idempotent. You can safely run it multiple times and it will
not screw up previous results -- in fact, it will do nothing if
nothing has changed. Thus, it can be run repeatedly as necessary
to handle patches coming in from old workspaces, or old branches.)
There are two tags, just before and just after the change:
`pre-integral-type-rename' and `post-integral-type-rename'. When
merging code from the main trunk into a branch, the best thing to
do is first merge up to `pre-integral-type-rename', then apply the
script and associated changes, then merge from
`post-integral-type-change' to the present. (Alternatively, just do
the merging in one operation; but you may then have a lot of
conflicts needing to be resolved by hand.)
Script `fixtypes.sh' follows:
----------------------------------- cut ------------------------------------
files="*.[ch] s/*.h m/*.h config.h.in ../configure.in Makefile.in.in ../lib-src/*.[ch] ../lwlib/*.[ch]"
gr Memory_Count Bytecount $files
gr Lstream_Data_Count Bytecount $files
gr Element_Count Elemcount $files
gr Hash_Code Hashcode $files
gr extcount bytecount $files
gr bufpos charbpos $files
gr bytind bytebpos $files
gr memind membpos $files
gr bufbyte intbyte $files
gr Extcount Bytecount $files
gr Bufpos Charbpos $files
gr Bytind Bytebpos $files
gr Memind Membpos $files
gr Bufbyte Intbyte $files
gr EXTCOUNT BYTECOUNT $files
gr BUFPOS CHARBPOS $files
gr BYTIND BYTEBPOS $files
gr MEMIND MEMBPOS $files
gr BUFBYTE INTBYTE $files
gr MEMORY_COUNT BYTECOUNT $files
gr LSTREAM_DATA_COUNT BYTECOUNT $files
gr ELEMENT_COUNT ELEMCOUNT $files
gr HASH_CODE HASHCODE $files
----------------------------------- cut ------------------------------------
`fixtypes.sh' is a Bourne-shell script; it uses 'gr':
----------------------------------- cut ------------------------------------
#!/bin/sh
# Usage is like this:
# gr FROM TO FILES ...
# globally replace FROM with TO in FILES. FROM and TO are regular expressions.
# backup files are stored in the `backup' directory.
from="$1"
to="$2"
shift 2
echo ${1+"$@"} | xargs global-replace "s/$from/$to/g"
----------------------------------- cut ------------------------------------
`gr' in turn uses a Perl script to do its real work,
`global-replace', which follows:
----------------------------------- cut ------------------------------------
: #-*- Perl -*-
### global-modify --- modify the contents of a file by a Perl expression
## Copyright (C) 1999 Martin Buchholz.
## Copyright (C) 2001 Ben Wing.
## Authors: Martin Buchholz <martin@xemacs.org>, Ben Wing <ben@xemacs.org>
## Maintainer: Ben Wing <ben@xemacs.org>
## Current Version: 1.0, May 5, 2001
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with XEmacs; see the file COPYING. If not, write to the Free
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
eval 'exec perl -w -S $0 ${1+"$@"}'
if 0;
use strict;
use FileHandle;
use Carp;
use Getopt::Long;
use File::Basename;
(my $myName = $0) =~ s@.*/@@; my $usage="
Usage: $myName [--help] [--backup-dir=DIR] [--line-mode] [--hunk-mode]
PERLEXPR FILE ...
Globally modify a file, either line by line or in one big hunk.
Typical usage is like this:
[with GNU print, GNU xargs: guaranteed to handle spaces, quotes, etc.
in file names]
find . -name '*.[ch]' -print0 | xargs -0 $0 's/\bCONST\b/const/g'\n
[with non-GNU print, xargs]
find . -name '*.[ch]' -print | xargs $0 's/\bCONST\b/const/g'\n
The file is read in, either line by line (with --line-mode specified)
or in one big hunk (with --hunk-mode specified; it's the default), and
the Perl expression is then evalled with \$_ set to the line or hunk of
text, including the terminating newline if there is one. It should
destructively modify the value there, storing the changed result in \$_.
Files in which any modifications are made are backed up to the directory
specified using --backup-dir, or to `backup' by default. To disable this,
use --backup-dir= with no argument.
Hunk mode is the default because it is MUCH MUCH faster than line-by-line.
Use line-by-line only when it matters, e.g. you want to do a replacement
only once per line (the default without the `g' argument). Conversely,
when using hunk mode, *ALWAYS* use `g'; otherwise, you will only make one
replacement in the entire file!
";
my %options = ();
$Getopt::Long::ignorecase = 0;
&GetOptions (
\%options,
'help', 'backup-dir=s', 'line-mode', 'hunk-mode',
);
die $usage if $options{"help"} or @ARGV <= 1;
my $code = shift;
die $usage if grep (-d || ! -w, @ARGV);
sub SafeOpen {
open ((my $fh = new FileHandle), $_[0]);
confess "Can't open $_[0]: $!" if ! defined $fh;
return $fh;
}
sub SafeClose {
close $_[0] or confess "Can't close $_[0]: $!";
}
sub FileContents {
my $fh = SafeOpen ("< $_[0]");
my $olddollarslash = $/;
local $/ = undef;
my $contents = <$fh>;
$/ = $olddollarslash;
return $contents;
}
sub WriteStringToFile {
my $fh = SafeOpen ("> $_[0]");
binmode $fh;
print $fh $_[1] or confess "$_[0]: $!\n";
SafeClose $fh;
}
foreach my $file (@ARGV) {
my $changed_p = 0;
my $new_contents = "";
if ($options{"line-mode"}) {
my $fh = SafeOpen $file;
while (<$fh>) {
my $save_line = $_;
eval $code;
$changed_p = 1 if $save_line ne $_;
$new_contents .= $_;
}
} else {
my $orig_contents = $_ = FileContents $file;
eval $code;
if ($_ ne $orig_contents) {
$changed_p = 1;
$new_contents = $_;
}
}
if ($changed_p) {
my $backdir = $options{"backup-dir"};
$backdir = "backup" if !defined ($backdir);
if ($backdir) {
my ($name, $path, $suffix) = fileparse ($file, "");
my $backfulldir = $path . $backdir;
my $backfile = "$backfulldir/$name";
mkdir $backfulldir, 0755 unless -d $backfulldir;
print "modifying $file (original saved in $backfile)\n";
rename $file, $backfile;
}
WriteStringToFile ($file, $new_contents);
}
}
----------------------------------- cut ------------------------------------
In addition to those programs, I needed to fix up a few other
things, particularly relating to the duplicate definitions of
types, now that some types merged with others. Specifically:
1. in lisp.h, removed duplicate declarations of Bytecount. The
changed code should now look like this: (In each code snippet
below, the first and last lines are the same as the original, as
are all lines outside of those lines. That allows you to locate
the section to be replaced, and replace the stuff in that
section, verifying that there isn't anything new added that
would need to be kept.)
--------------------------------- snip -------------------------------------
/* Counts of bytes or chars */
typedef EMACS_INT Bytecount;
typedef EMACS_INT Charcount;
/* Counts of elements */
typedef EMACS_INT Elemcount;
/* Hash codes */
typedef unsigned long Hashcode;
/* ------------------------ dynamic arrays ------------------- */
--------------------------------- snip -------------------------------------
2. in lstream.h, removed duplicate declaration of Bytecount.
Rewrote the comment about this type. The changed code should
now look like this:
--------------------------------- snip -------------------------------------
#endif
/* The have been some arguments over the what the type should be that
specifies a count of bytes in a data block to be written out or read in,
using Lstream_read(), Lstream_write(), and related functions.
Originally it was long, which worked fine; Martin "corrected" these to
size_t and ssize_t on the grounds that this is theoretically cleaner and
is in keeping with the C standards. Unfortunately, this practice is
horribly error-prone due to design flaws in the way that mixed
signed/unsigned arithmetic happens. In fact, by doing this change,
Martin introduced a subtle but fatal error that caused the operation of
sending large mail messages to the SMTP server under Windows to fail.
By putting all values back to be signed, avoiding any signed/unsigned
mixing, the bug immediately went away. The type then in use was
Lstream_Data_Count, so that it be reverted cleanly if a vote came to
that. Now it is Bytecount.
Some earlier comments about why the type must be signed: This MUST BE
SIGNED, since it also is used in functions that return the number of
bytes actually read to or written from in an operation, and these
functions can return -1 to signal error.
Note that the standard Unix read() and write() functions define the
count going in as a size_t, which is UNSIGNED, and the count going
out as an ssize_t, which is SIGNED. This is a horrible design
flaw. Not only is it highly likely to lead to logic errors when a
-1 gets interpreted as a large positive number, but operations are
bound to fail in all sorts of horrible ways when a number in the
upper-half of the size_t range is passed in -- this number is
unrepresentable as an ssize_t, so code that checks to see how many
bytes are actually written (which is mandatory if you are dealing
with certain types of devices) will get completely screwed up.
--ben
*/
typedef enum lstream_buffering
--------------------------------- snip -------------------------------------
3. in dumper.c, there are four places, all inside of switch()
statements, where XD_BYTECOUNT appears twice as a case tag. In
each case, the two case blocks contain identical code, and you
should *REMOVE THE SECOND* and leave the first.
author | ben |
---|---|
date | Thu, 20 Sep 2001 06:31:11 +0000 |
parents | 1ccc32a20af4 |
children | c136144fe765 |
rev | line source |
---|---|
428 | 1 ;;; lisp.el --- Lisp editing commands for XEmacs |
2 | |
3 ;; Copyright (C) 1985, 1986, 1994, 1997 Free Software Foundation, Inc. | |
4 | |
5 ;; Maintainer: FSF | |
6 ;; Keywords: lisp, languages, dumped | |
7 | |
8 ;; This file is part of XEmacs. | |
9 | |
10 ;; XEmacs is free software; you can redistribute it and/or modify it | |
11 ;; under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; XEmacs is distributed in the hope that it will be useful, but | |
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 ;; General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
23 ;; 02111-1307, USA. | |
24 | |
25 ;;; Synched up with: Emacs/Mule zeta. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; This file is dumped with XEmacs. | |
30 | |
31 ;; Lisp editing commands to go with Lisp major mode. | |
32 | |
33 ;; 06/11/1997 - Use char-(after|before) instead of | |
34 ;; (following|preceding)-char. -slb | |
35 | |
36 ;;; Code: | |
37 | |
38 ;; Note that this variable is used by non-lisp modes too. | |
39 (defcustom defun-prompt-regexp nil | |
40 "*Non-nil => regexp to ignore, before the character that starts a defun. | |
41 This is only necessary if the opening paren or brace is not in column 0. | |
42 See `beginning-of-defun'." | |
43 :type '(choice (const :tag "none" nil) | |
44 regexp) | |
45 :group 'lisp) | |
46 | |
47 (make-variable-buffer-local 'defun-prompt-regexp) | |
48 | |
49 (defcustom parens-require-spaces t | |
50 "Non-nil => `insert-parentheses' should insert whitespace as needed." | |
51 :type 'boolean | |
52 :group 'editing-basics | |
53 :group 'lisp) | |
54 | |
55 (defun forward-sexp (&optional arg) | |
56 "Move forward across one balanced expression (sexp). | |
57 With argument, do it that many times. Negative arg -N means | |
58 move backward across N balanced expressions." | |
59 ;; XEmacs change (for zmacs regions) | |
60 (interactive "_p") | |
61 (or arg (setq arg 1)) | |
62 ;; XEmacs: evil hack! The other half of the evil hack below. | |
63 (if (and (> arg 0) (looking-at "#s(")) | |
64 (goto-char (+ (point) 2))) | |
65 (goto-char (or (scan-sexps (point) arg) (buffer-end arg))) | |
66 (if (< arg 0) (backward-prefix-chars)) | |
67 ;; XEmacs: evil hack! Skip back over #s so that structures are read | |
68 ;; properly. the current cheesified syntax tables just aren't up to | |
69 ;; this. | |
70 (if (and (< arg 0) | |
71 (eq (char-after (point)) ?\() | |
72 (>= (- (point) (point-min)) 2) | |
73 (eq (char-after (- (point) 1)) ?s) | |
74 (eq (char-after (- (point) 2)) ?#)) | |
75 (goto-char (- (point) 2)))) | |
76 | |
77 (defun backward-sexp (&optional arg) | |
78 "Move backward across one balanced expression (sexp). | |
79 With argument, do it that many times. Negative arg -N means | |
80 move forward across N balanced expressions." | |
81 ;; XEmacs change (for zmacs regions) | |
82 (interactive "_p") | |
444 | 83 (forward-sexp (- (or arg 1)))) |
428 | 84 |
444 | 85 (defun mark-sexp (&optional arg) |
428 | 86 "Set mark ARG sexps from point. |
87 The place mark goes is the same place \\[forward-sexp] would | |
88 move to with the same argument. | |
89 Repeat this command to mark more sexps in the same direction." | |
90 (interactive "p") | |
444 | 91 (mark-something 'mark-sexp 'forward-sexp (or arg 1))) |
428 | 92 |
93 (defun forward-list (&optional arg) | |
94 "Move forward across one balanced group of parentheses. | |
95 With argument, do it that many times. | |
96 Negative arg -N means move backward across N groups of parentheses." | |
97 ;; XEmacs change | |
98 (interactive "_p") | |
444 | 99 (goto-char (or (scan-lists (point) (or arg 1) 0) (buffer-end (or arg 1))))) |
428 | 100 |
101 (defun backward-list (&optional arg) | |
102 "Move backward across one balanced group of parentheses. | |
103 With argument, do it that many times. | |
104 Negative arg -N means move forward across N groups of parentheses." | |
105 ;; XEmacs change (for zmacs regions) | |
106 (interactive "_p") | |
444 | 107 (forward-list (- (or arg 1)))) |
428 | 108 |
444 | 109 (defun down-list (&optional arg) |
428 | 110 "Move forward down one level of parentheses. |
111 With argument, do this that many times. | |
444 | 112 A negative argument means move backward but still go down a level." |
428 | 113 ;; XEmacs change (for zmacs regions) |
114 (interactive "_p") | |
444 | 115 (or arg (setq arg 1)) |
428 | 116 (let ((inc (if (> arg 0) 1 -1))) |
117 (while (/= arg 0) | |
118 (goto-char (or (scan-lists (point) inc -1) (buffer-end arg))) | |
119 (setq arg (- arg inc))))) | |
120 | |
444 | 121 (defun backward-up-list (&optional arg) |
428 | 122 "Move backward out of one level of parentheses. |
123 With argument, do this that many times. | |
444 | 124 A negative argument means move forward but still to a less deep spot." |
428 | 125 (interactive "_p") |
444 | 126 (up-list (- (or arg 1)))) |
428 | 127 |
444 | 128 (defun up-list (&optional arg) |
428 | 129 "Move forward out of one level of parentheses. |
130 With argument, do this that many times. | |
131 A negative argument means move backward but still to a less deep spot. | |
132 In Lisp programs, an argument is required." | |
133 ;; XEmacs change (for zmacs regions) | |
134 (interactive "_p") | |
444 | 135 (or arg (setq arg 1)) |
428 | 136 (let ((inc (if (> arg 0) 1 -1))) |
137 (while (/= arg 0) | |
138 (goto-char (or (scan-lists (point) inc 1) (buffer-end arg))) | |
139 (setq arg (- arg inc))))) | |
140 | |
444 | 141 (defun kill-sexp (&optional arg) |
428 | 142 "Kill the sexp (balanced expression) following the cursor. |
143 With argument, kill that many sexps after the cursor. | |
144 Negative arg -N means kill N sexps before the cursor." | |
145 (interactive "p") | |
146 (let ((opoint (point))) | |
444 | 147 (forward-sexp (or arg 1)) |
428 | 148 (kill-region opoint (point)))) |
149 | |
444 | 150 (defun backward-kill-sexp (&optional arg) |
428 | 151 "Kill the sexp (balanced expression) preceding the cursor. |
152 With argument, kill that many sexps before the cursor. | |
153 Negative arg -N means kill N sexps after the cursor." | |
154 (interactive "p") | |
444 | 155 (kill-sexp (- (or arg 1)))) |
428 | 156 |
157 (defun beginning-of-defun (&optional arg) | |
158 "Move backward to the beginning of a defun. | |
159 With argument, do it that many times. Negative arg -N | |
160 means move forward to Nth following beginning of defun. | |
161 Returns t unless search stops due to beginning or end of buffer. | |
162 | |
163 Normally a defun starts when there is an char with open-parenthesis | |
164 syntax at the beginning of a line. If `defun-prompt-regexp' is | |
165 non-nil, then a string which matches that regexp may precede the | |
166 open-parenthesis, and point ends up at the beginning of the line." | |
167 ;; XEmacs change (for zmacs regions) | |
168 (interactive "_p") | |
169 (and (beginning-of-defun-raw arg) | |
170 (progn (beginning-of-line) t))) | |
171 | |
172 (defun beginning-of-defun-raw (&optional arg) | |
173 "Move point to the character that starts a defun. | |
174 This is identical to beginning-of-defun, except that point does not move | |
175 to the beginning of the line when `defun-prompt-regexp' is non-nil." | |
176 (interactive "p") | |
177 (and arg (< arg 0) (not (eobp)) (forward-char 1)) | |
178 (and (re-search-backward (if defun-prompt-regexp | |
179 (concat "^\\s(\\|" | |
180 "\\(" defun-prompt-regexp "\\)\\s(") | |
181 "^\\s(") | |
182 nil 'move (or arg 1)) | |
183 (progn (goto-char (1- (match-end 0)))) t)) | |
184 | |
185 ;; XEmacs change (optional buffer parameter) | |
186 (defun buffer-end (arg &optional buffer) | |
187 "Return `point-max' of BUFFER if ARG is > 0; return `point-min' otherwise. | |
188 BUFFER defaults to the current buffer if omitted." | |
189 (if (> arg 0) (point-max buffer) (point-min buffer))) | |
190 | |
191 (defun end-of-defun (&optional arg) | |
192 "Move forward to next end of defun. With argument, do it that many times. | |
193 Negative argument -N means move back to Nth preceding end of defun. | |
194 | |
195 An end of a defun occurs right after the close-parenthesis that matches | |
196 the open-parenthesis that starts a defun; see `beginning-of-defun'." | |
197 ;; XEmacs change (for zmacs regions) | |
198 (interactive "_p") | |
199 (if (or (null arg) (= arg 0)) (setq arg 1)) | |
200 (let ((first t)) | |
201 (while (and (> arg 0) (< (point) (point-max))) | |
202 (let ((pos (point))) ; XEmacs -- remove unused npos. | |
203 (while (progn | |
204 (if (and first | |
205 (progn | |
206 (end-of-line 1) | |
207 (beginning-of-defun-raw 1))) | |
208 nil | |
446 | 209 (or (bobp) (backward-char 1)) |
428 | 210 (beginning-of-defun-raw -1)) |
211 (setq first nil) | |
212 (forward-list 1) | |
213 (skip-chars-forward " \t") | |
214 (if (looking-at "\\s<\\|\n") | |
215 (forward-line 1)) | |
216 (<= (point) pos)))) | |
217 (setq arg (1- arg))) | |
218 (while (< arg 0) | |
219 (let ((pos (point))) | |
220 (beginning-of-defun-raw 1) | |
221 (forward-sexp 1) | |
222 (forward-line 1) | |
223 (if (>= (point) pos) | |
224 (if (beginning-of-defun-raw 2) | |
225 (progn | |
226 (forward-list 1) | |
227 (skip-chars-forward " \t") | |
228 (if (looking-at "\\s<\\|\n") | |
229 (forward-line 1))) | |
230 (goto-char (point-min))))) | |
231 (setq arg (1+ arg))))) | |
232 | |
233 (defun mark-defun () | |
234 "Put mark at end of this defun, point at beginning. | |
235 The defun marked is the one that contains point or follows point." | |
236 (interactive) | |
237 (push-mark (point)) | |
238 (end-of-defun) | |
239 (push-mark (point) nil t) | |
240 (beginning-of-defun) | |
241 (re-search-backward "^\n" (- (point) 1) t)) | |
242 | |
243 (defun narrow-to-defun (&optional arg) | |
244 "Make text outside current defun invisible. | |
245 The defun visible is the one that contains point or follows point." | |
246 (interactive) | |
247 (save-excursion | |
248 (widen) | |
249 (end-of-defun) | |
250 (let ((end (point))) | |
251 (beginning-of-defun) | |
252 (narrow-to-region (point) end)))) | |
253 | |
254 (defun insert-parentheses (arg) | |
255 "Enclose following ARG sexps in parentheses. Leave point after open-paren. | |
256 A negative ARG encloses the preceding ARG sexps instead. | |
257 No argument is equivalent to zero: just insert `()' and leave point between. | |
258 If `parens-require-spaces' is non-nil, this command also inserts a space | |
259 before and after, depending on the surrounding characters." | |
260 (interactive "P") | |
261 (if arg (setq arg (prefix-numeric-value arg)) | |
262 (setq arg 0)) | |
263 (cond ((> arg 0) (skip-chars-forward " \t")) | |
264 ((< arg 0) (forward-sexp arg) (setq arg (- arg)))) | |
265 (and parens-require-spaces | |
266 (not (bobp)) | |
267 (memq (char-syntax (char-before (point))) '(?w ?_ ?\) )) | |
268 (insert " ")) | |
269 (insert ?\() | |
270 (save-excursion | |
271 (or (eq arg 0) (forward-sexp arg)) | |
272 (insert ?\)) | |
273 (and parens-require-spaces | |
274 (not (eobp)) | |
275 (memq (char-syntax (char-after (point))) '(?w ?_ ?\( )) | |
276 (insert " ")))) | |
277 | |
278 (defun move-past-close-and-reindent () | |
279 "Move past next `)', delete indentation before it, then indent after it." | |
280 (interactive) | |
281 (up-list 1) | |
446 | 282 (backward-char 1) |
428 | 283 (while (save-excursion ; this is my contribution |
284 (let ((before-paren (point))) | |
285 (back-to-indentation) | |
286 (= (point) before-paren))) | |
287 (delete-indentation)) | |
288 (forward-char 1) | |
289 (newline-and-indent)) | |
290 | |
291 (defun lisp-complete-symbol () | |
292 "Perform completion on Lisp symbol preceding point. | |
293 Compare that symbol against the known Lisp symbols. | |
294 | |
295 The context determines which symbols are considered. | |
296 If the symbol starts just after an open-parenthesis, only symbols | |
297 with function definitions are considered. Otherwise, all symbols with | |
298 function definitions, values or properties are considered." | |
299 (interactive) | |
300 (let* ((end (point)) | |
301 (buffer-syntax (syntax-table)) | |
302 (beg (unwind-protect | |
303 (save-excursion | |
304 ;; XEmacs change | |
305 (if emacs-lisp-mode-syntax-table | |
306 (set-syntax-table emacs-lisp-mode-syntax-table)) | |
307 (backward-sexp 1) | |
308 (while (eq (char-syntax (char-after (point))) ?\') | |
309 (forward-char 1)) | |
310 (point)) | |
311 (set-syntax-table buffer-syntax))) | |
312 (pattern (buffer-substring beg end)) | |
313 (predicate | |
314 (if (eq (char-after (1- beg)) ?\() | |
315 'fboundp | |
316 ;; XEmacs change | |
317 #'(lambda (sym) | |
318 (or (boundp sym) (fboundp sym) | |
319 (symbol-plist sym))))) | |
320 (completion (try-completion pattern obarray predicate))) | |
321 (cond ((eq completion t)) | |
322 ((null completion) | |
323 (message "Can't find completion for \"%s\"" pattern) | |
324 (ding)) | |
325 ((not (string= pattern completion)) | |
326 (delete-region beg end) | |
327 (insert completion)) | |
328 (t | |
329 (message "Making completion list...") | |
330 (let ((list (all-completions pattern obarray predicate)) | |
331 ;FSFmacs crock unnecessary in XEmacs | |
332 ;see minibuf.el | |
333 ;(completion-fixup-function | |
334 ; (function (lambda () (if (save-excursion | |
335 ; (goto-char (max (point-min) | |
336 ; (- (point) 4))) | |
337 ; (looking-at " <f>")) | |
338 ; (forward-char -4)))) | |
339 ) | |
340 (or (eq predicate 'fboundp) | |
341 (let (new) | |
342 (while list | |
343 (setq new (cons (if (fboundp (intern (car list))) | |
344 (list (car list) " <f>") | |
345 (car list)) | |
346 new)) | |
347 (setq list (cdr list))) | |
348 (setq list (nreverse new)))) | |
349 (with-output-to-temp-buffer "*Completions*" | |
350 (display-completion-list list))) | |
351 (message "Making completion list...%s" "done"))))) | |
352 | |
353 ;;; lisp.el ends here |