1 ;;; lisp.el --- Lisp editing commands for XEmacs
3 ;; Copyright (C) 1985, 1986, 1994, 1997 Free Software Foundation, Inc.
6 ;; Keywords: lisp, languages, dumped
8 ;; This file is part of XEmacs.
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)
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.
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
25 ;;; Synched up with: Emacs/Mule zeta.
29 ;; This file is dumped with XEmacs.
31 ;; Lisp editing commands to go with Lisp major mode.
33 ;; 06/11/1997 - Use char-(after|before) instead of
34 ;; (following|preceding)-char. -slb
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)
47 (make-variable-buffer-local 'defun-prompt-regexp)
49 (defcustom parens-require-spaces t
50 "Non-nil => `insert-parentheses' should insert whitespace as needed."
52 :group 'editing-basics
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)
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
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))))
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)
83 (forward-sexp (- (or arg 1))))
85 (defun mark-sexp (&optional arg)
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."
91 (mark-something 'mark-sexp 'forward-sexp (or arg 1)))
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."
99 (goto-char (or (scan-lists (point) (or arg 1) 0) (buffer-end (or arg 1)))))
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)
107 (forward-list (- (or arg 1))))
109 (defun down-list (&optional arg)
110 "Move forward down one level of parentheses.
111 With argument, do this that many times.
112 A negative argument means move backward but still go down a level."
113 ;; XEmacs change (for zmacs regions)
115 (or arg (setq arg 1))
116 (let ((inc (if (> arg 0) 1 -1)))
118 (goto-char (or (scan-lists (point) inc -1) (buffer-end arg)))
119 (setq arg (- arg inc)))))
121 (defun backward-up-list (&optional arg)
122 "Move backward out of one level of parentheses.
123 With argument, do this that many times.
124 A negative argument means move forward but still to a less deep spot."
126 (up-list (- (or arg 1))))
128 (defun up-list (&optional arg)
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)
135 (or arg (setq arg 1))
136 (let ((inc (if (> arg 0) 1 -1)))
138 (goto-char (or (scan-lists (point) inc 1) (buffer-end arg)))
139 (setq arg (- arg inc)))))
141 (defun kill-sexp (&optional arg)
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."
146 (let ((opoint (point)))
147 (forward-sexp (or arg 1))
148 (kill-region opoint (point))))
150 (defun backward-kill-sexp (&optional arg)
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."
155 (kill-sexp (- (or arg 1))))
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.
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)
169 (and (beginning-of-defun-raw arg)
170 (progn (beginning-of-line) t)))
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."
177 (and arg (< arg 0) (not (eobp)) (forward-char 1))
178 (and (re-search-backward (if defun-prompt-regexp
180 "\\(" defun-prompt-regexp "\\)\\s(")
182 nil 'move (or arg 1))
183 (progn (goto-char (1- (match-end 0)))) t))
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)))
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.
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)
199 (if (or (null arg) (= arg 0)) (setq arg 1))
201 (while (and (> arg 0) (< (point) (point-max)))
202 (let ((pos (point))) ; XEmacs -- remove unused npos.
207 (beginning-of-defun-raw 1)))
209 (or (bobp) (backward-char 1))
210 (beginning-of-defun-raw -1))
213 (skip-chars-forward " \t")
214 (if (looking-at "\\s<\\|\n")
220 (beginning-of-defun-raw 1)
224 (if (beginning-of-defun-raw 2)
227 (skip-chars-forward " \t")
228 (if (looking-at "\\s<\\|\n")
230 (goto-char (point-min)))))
231 (setq arg (1+ arg)))))
234 "Put mark at end of this defun, point at beginning.
235 The defun marked is the one that contains point or follows point."
239 (push-mark (point) nil t)
241 (re-search-backward "^\n" (- (point) 1) t))
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."
252 (narrow-to-region (point) end))))
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."
261 (if arg (setq arg (prefix-numeric-value arg))
263 (cond ((> arg 0) (skip-chars-forward " \t"))
264 ((< arg 0) (forward-sexp arg) (setq arg (- arg))))
265 (and parens-require-spaces
267 (memq (char-syntax (char-before (point))) '(?w ?_ ?\) ))
271 (or (eq arg 0) (forward-sexp arg))
273 (and parens-require-spaces
275 (memq (char-syntax (char-after (point))) '(?w ?_ ?\( ))
278 (defun move-past-close-and-reindent ()
279 "Move past next `)', delete indentation before it, then indent after it."
283 (while (save-excursion ; this is my contribution
284 (let ((before-paren (point)))
285 (back-to-indentation)
286 (= (point) before-paren)))
287 (delete-indentation))
289 (newline-and-indent))
291 (defun lisp-complete-symbol ()
292 "Perform completion on Lisp symbol preceding point.
293 Compare that symbol against the known Lisp symbols.
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."
301 (buffer-syntax (syntax-table))
305 (if emacs-lisp-mode-syntax-table
306 (set-syntax-table emacs-lisp-mode-syntax-table))
308 (while (eq (char-syntax (char-after (point))) ?\')
311 (set-syntax-table buffer-syntax)))
312 (pattern (buffer-substring beg end))
314 (if (eq (char-after (1- beg)) ?\()
318 (or (boundp sym) (fboundp sym)
319 (symbol-plist sym)))))
320 (completion (try-completion pattern obarray predicate)))
321 (cond ((eq completion t))
323 (message "Can't find completion for \"%s\"" pattern)
325 ((not (string= pattern completion))
326 (delete-region beg end)
329 (message "Making completion list...")
330 (let ((list (all-completions pattern obarray predicate))
331 ;FSFmacs crock unnecessary in XEmacs
333 ;(completion-fixup-function
334 ; (function (lambda () (if (save-excursion
335 ; (goto-char (max (point-min)
337 ; (looking-at " <f>"))
338 ; (forward-char -4))))
340 (or (eq predicate 'fboundp)
343 (setq new (cons (if (fboundp (intern (car list)))
344 (list (car list) " <f>")
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")))))
353 ;;; lisp.el ends here