aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSam Steingold1999-11-15 18:59:00 +0000
committerSam Steingold1999-11-15 18:59:00 +0000
commitda49057ce7949951fed8d81e91dcafe58e81c42a (patch)
treec2746797a4ba54bd6371f89c7b53e332dfd3203c /lisp
parent002c0506fcceec111d091ebd60a02be3cfca7b52 (diff)
downloademacs-da49057ce7949951fed8d81e91dcafe58e81c42a.tar.gz
emacs-da49057ce7949951fed8d81e91dcafe58e81c42a.zip
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog20
-rw-r--r--lisp/dabbrev.el20
2 files changed, 22 insertions, 18 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bdc88905563..27426f615de 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,21 +1,25 @@
11999-11-15 Sam Steingold <sds@ksp.com>
2
3 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
4
11999-02-22 Sam Steingold <sds@goems.com> 51999-02-22 Sam Steingold <sds@goems.com>
2 6
3 * goto-addr.el (goto-address-at-mouse, 7 * goto-addr.el (goto-address-at-mouse,
4 goto-address-find-address-at-point): use compose-mail. 8 goto-address-find-address-at-point): use compose-mail.
5 (goto-address-mail-method): removed variable. 9 (goto-address-mail-method): removed variable.
6 (goto-address-send-using-mh-e, goto-address-send-using-mhe, 10 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
7 goto-address-send-using-mail): removed functions. 11 goto-address-send-using-mail): removed functions.
8 12
91998-11-03 Sam Steingold <sds@goems.com> 131998-11-03 Sam Steingold <sds@goems.com>
10 14
11 * simple.el (backward-delete-char-untabify): 15 * simple.el (backward-delete-char-untabify):
12 backward-delete-char-untabify-method can be `all' now - to delete 16 backward-delete-char-untabify-method can be `all' now - to delete
13 hungrily including newlines. 17 hungrily including newlines.
14 18
151999-11-15 Sam Steingold <sds@ksp.com> 191999-11-15 Sam Steingold <sds@ksp.com>
16 20
17 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax. 21 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
18 22
191999-11-15 Dave Love <fx@gnu.org> 231999-11-15 Dave Love <fx@gnu.org>
20 24
21 * cus-edit.el (customize-face, customize-face-other-window): 25 * cus-edit.el (customize-face, customize-face-other-window):
@@ -41,10 +45,10 @@
41 45
42 * ansi-color.el (ansi-color-apply): Updated regexps to include 46 * ansi-color.el (ansi-color-apply): Updated regexps to include
43 highlighted face. 47 highlighted face.
44 48
451999-01-14 Johan Vromans <jvromans@squirrel.nl> 491999-01-14 Johan Vromans <jvromans@squirrel.nl>
46 50
47 * forms.el (forms--make-format-elt-using-text-properties): 51 * forms.el (forms--make-format-elt-using-text-properties):
48 Treat `intangible' differently. 52 Treat `intangible' differently.
49 53
50 * forms.el: Use new backquote syntax. 54 * forms.el: Use new backquote syntax.
@@ -61,7 +65,7 @@
61 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New 65 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
62 variables 66 variables
63 (smbclient, smbclient-list-shares): New functions 67 (smbclient, smbclient-list-shares): New functions
64 68
651999-11-12 Sam Steingold <sds@ksp.com> 691999-11-12 Sam Steingold <sds@ksp.com>
66 70
67 * emulation/viper-init.el (viper-deflocalvar, viper-loop) 71 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el
index 371037312e2..909b86dbbcf 100644
--- a/lisp/dabbrev.el
+++ b/lisp/dabbrev.el
@@ -310,14 +310,14 @@ this list.")
310;; variable ELEMENT, and include it in the result 310;; variable ELEMENT, and include it in the result
311;; if CONDITION evaluates non-nil. 311;; if CONDITION evaluates non-nil.
312(defmacro dabbrev-filter-elements (element list condition) 312(defmacro dabbrev-filter-elements (element list condition)
313 (` (let (dabbrev-result dabbrev-tail (, element)) 313 `(let (dabbrev-result dabbrev-tail ,element)
314 (setq dabbrev-tail (, list)) 314 (setq dabbrev-tail ,list)
315 (while dabbrev-tail 315 (while dabbrev-tail
316 (setq (, element) (car dabbrev-tail)) 316 (setq ,element (car dabbrev-tail))
317 (if (, condition) 317 (if ,condition
318 (setq dabbrev-result (cons (, element) dabbrev-result))) 318 (setq dabbrev-result (cons ,element dabbrev-result)))
319 (setq dabbrev-tail (cdr dabbrev-tail))) 319 (setq dabbrev-tail (cdr dabbrev-tail)))
320 (nreverse dabbrev-result)))) 320 (nreverse dabbrev-result)))
321 321
322;;---------------------------------------------------------------- 322;;----------------------------------------------------------------
323;; Exported functions 323;; Exported functions
@@ -569,7 +569,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
569 (equal abbrev (upcase abbrev))))) 569 (equal abbrev (upcase abbrev)))))
570 570
571 ;; Save state for re-expand. 571 ;; Save state for re-expand.
572 (setq dabbrev--last-expansion expansion) 572 (setq dabbrev--last-expansion expansion)
573 (setq dabbrev--last-abbreviation abbrev) 573 (setq dabbrev--last-abbreviation abbrev)
574 (setq dabbrev--last-abbrev-location (point-marker)))))) 574 (setq dabbrev--last-abbrev-location (point-marker))))))
575 575
@@ -630,7 +630,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
630 (dabbrev--goto-start-of-abbrev) 630 (dabbrev--goto-start-of-abbrev)
631 (buffer-substring-no-properties 631 (buffer-substring-no-properties
632 dabbrev--last-abbrev-location (point)))) 632 dabbrev--last-abbrev-location (point))))
633 633
634;;; Initializes all global variables 634;;; Initializes all global variables
635(defun dabbrev--reset-global-variables () 635(defun dabbrev--reset-global-variables ()
636 ;; dabbrev--last-obarray and dabbrev--last-completion-buffer 636 ;; dabbrev--last-obarray and dabbrev--last-completion-buffer