From 71d067252ce797850e67c56b46646ca5dd82064e Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Sat, 5 Sep 2020 21:57:23 -0400 Subject: [PATCH] EUDC: Fix a minor formatting issue * lisp/net/eudcb-macos-contacts.el (eudc-macos-contacts-query-internal): Move result to its own line to eliminate a lisp-mode warning. --- lisp/net/eudcb-macos-contacts.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/net/eudcb-macos-contacts.el b/lisp/net/eudcb-macos-contacts.el index e2d10e33d49..3c0d88fc23f 100644 --- a/lisp/net/eudcb-macos-contacts.el +++ b/lisp/net/eudcb-macos-contacts.el @@ -96,7 +96,8 @@ RETURN-ATTRS is a list of attributes to return, defaulting to (name (nth 0 args)) (email (nth 1 args))) (setq result (cons `((name . ,name) - (email . ,email)) result)))) + (email . ,email)) + result)))) (forward-line)) result))) -- 2.39.5