Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
da49057c
Commit
da49057c
authored
Nov 15, 1999
by
Sam Steingold
Browse files
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
parent
002c0506
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
18 deletions
+22
-18
lisp/ChangeLog
lisp/ChangeLog
+12
-8
lisp/dabbrev.el
lisp/dabbrev.el
+10
-10
No files found.
lisp/ChangeLog
View file @
da49057c
1999-11-15 Sam Steingold <sds@ksp.com>
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
1999-02-22 Sam Steingold <sds@goems.com>
* goto-addr.el (goto-address-at-mouse,
goto-address-find-address-at-point): use compose-mail.
(goto-address-mail-method): removed variable.
(goto-address-send-using-mh-e, goto-address-send-using-mhe,
goto-address-send-using-mail): removed functions.
1998-11-03 Sam Steingold <sds@goems.com>
* simple.el (backward-delete-char-untabify):
backward-delete-char-untabify-method can be `all' now - to delete
hungrily including newlines.
1999-11-15 Sam Steingold <sds@ksp.com>
* mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
1999-11-15 Dave Love <fx@gnu.org>
* cus-edit.el (customize-face, customize-face-other-window):
...
...
@@ -41,10 +45,10 @@
* ansi-color.el (ansi-color-apply): Updated regexps to include
highlighted face.
1999-01-14 Johan Vromans <jvromans@squirrel.nl>
* forms.el (forms--make-format-elt-using-text-properties):
* forms.el (forms--make-format-elt-using-text-properties):
Treat `intangible' differently.
* forms.el: Use new backquote syntax.
...
...
@@ -61,7 +65,7 @@
(smbclient-prompt-regexp, smbclient-font-lock-keywords): New
variables
(smbclient, smbclient-list-shares): New functions
1999-11-12 Sam Steingold <sds@ksp.com>
* emulation/viper-init.el (viper-deflocalvar, viper-loop)
...
...
lisp/dabbrev.el
View file @
da49057c
...
...
@@ -310,14 +310,14 @@ this list.")
;; variable ELEMENT, and include it in the result
;; if CONDITION evaluates non-nil.
(defmacro dabbrev-filter-elements (element list condition)
(`
(let (dabbrev-result dabbrev-tail
(,
element)
)
(setq dabbrev-tail
(,
list)
)
(while dabbrev-tail
(setq
(,
element
)
(car dabbrev-tail))
(if
(,
condition
)
(setq dabbrev-result (cons
(,
element
)
dabbrev-result)))
(setq dabbrev-tail (cdr dabbrev-tail)))
(nreverse dabbrev-result)))
)
`
(let (dabbrev-result dabbrev-tail
,
element)
(setq dabbrev-tail
,
list)
(while dabbrev-tail
(setq
,
element (car dabbrev-tail))
(if
,
condition
(setq dabbrev-result (cons
,
element dabbrev-result)))
(setq dabbrev-tail (cdr dabbrev-tail)))
(nreverse dabbrev-result)))
;;----------------------------------------------------------------
;; Exported functions
...
...
@@ -569,7 +569,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
(equal abbrev (upcase abbrev)))))
;; Save state for re-expand.
(setq dabbrev--last-expansion expansion)
(setq dabbrev--last-expansion expansion)
(setq dabbrev--last-abbreviation abbrev)
(setq dabbrev--last-abbrev-location (point-marker))))))
...
...
@@ -630,7 +630,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
(dabbrev--goto-start-of-abbrev)
(buffer-substring-no-properties
dabbrev--last-abbrev-location (point))))
;;; Initializes all global variables
(defun dabbrev--reset-global-variables ()
;; dabbrev--last-obarray and dabbrev--last-completion-buffer
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment