all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Returning a single alist
@ 2022-08-24 23:23 wilnerthomas--- via Users list for the GNU Emacs text editor
       [not found] ` <NAH9kf6--3-2@tutanota.com-NAH9oxW----2>
  0 siblings, 1 reply; 3+ messages in thread
From: wilnerthomas--- via Users list for the GNU Emacs text editor @ 2022-08-24 23:23 UTC (permalink / raw)
  To: Help Gnu Emacs

The function `translate' ends up returning a list of alists.  What can I do to return just a single alist? 

(defconst assoc-table-1  '( ("gigantic" . "jgN") ("graphology" . "Gol")  ("phrenology" . "fnol") ))(defconst assoc-table-2  '( ("psychology" . "skol")  ("physiology" . "fsol") ("minerology" . "Mnol") ))
(defun translate ()  "TODO"  (let* ( (name "assoc-table-")      (list '())      (counter 1) )    (while (boundp (intern (concat name (number-to-string counter))))      (setq list         (append list            (symbol-value (intern (concat name (number-to-string counter))))))            (setq counter (1+ counter)))    list))





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-25  0:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-24 23:23 Returning a single alist wilnerthomas--- via Users list for the GNU Emacs text editor
     [not found] ` <NAH9kf6--3-2@tutanota.com-NAH9oxW----2>
2022-08-24 23:48   ` wilnerthomas--- via Users list for the GNU Emacs text editor
     [not found]   ` <NAHFSyu--3-2@tutanota.com-NAHFagb----2>
2022-08-25  0:28     ` wilnerthomas--- via Users list for the GNU Emacs text editor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.