From ffa7d6671d893de397cb17c7230f68ef46bef294 Mon Sep 17 00:00:00 2001 From: Torsten Hilbrich Date: Mon, 14 Dec 2020 09:34:44 +0100 Subject: [PATCH] * lisp/net/dictionary.el: Prefer defsubst over defmacro --- lisp/net/dictionary.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index 624c1a40f55..782282c27cd 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -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" -- 2.39.2