mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-02 02:10:46 -08:00
* lisp/net/dictionary.el: Prefer defsubst over defmacro
This commit is contained in:
parent
a557a103cc
commit
ffa7d6671d
1 changed files with 6 additions and 6 deletions
|
|
@ -422,17 +422,17 @@ is utf-8"
|
|||
(dictionary-pre-buffer)
|
||||
(dictionary-post-buffer))
|
||||
|
||||
(defmacro dictionary-reply-code (reply)
|
||||
(defsubst dictionary-reply-code (reply)
|
||||
"Return the reply code stored in `reply'."
|
||||
(list 'get reply ''reply-code))
|
||||
(get reply 'reply-code))
|
||||
|
||||
(defmacro dictionary-reply (reply)
|
||||
(defsubst dictionary-reply (reply)
|
||||
"Return the string reply stored in `reply'."
|
||||
(list 'get reply ''reply))
|
||||
(get reply 'reply))
|
||||
|
||||
(defmacro dictionary-reply-list (reply)
|
||||
(defsubst dictionary-reply-list (reply)
|
||||
"Return the reply list stored in `reply'."
|
||||
(list 'get reply ''reply-list))
|
||||
(get reply 'reply-list))
|
||||
|
||||
(defun dictionary-open-server (server)
|
||||
"Opens a new connection to this server"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue