unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / 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

* Re: Returning a single alist
       [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>
  1 sibling, 0 replies; 3+ messages in thread
From: wilnerthomas--- via Users list for the GNU Emacs text editor @ 2022-08-24 23:48 UTC (permalink / raw)
  To: wilnerthomas; +Cc: Help Gnu Emacs


Aug 24, 2022, 23:23 by help-gnu-emacs@gnu.org:

> 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

* Re: Returning a single alist
       [not found]   ` <NAHFSyu--3-2@tutanota.com-NAHFagb----2>
@ 2022-08-25  0:28     ` wilnerthomas--- via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 3+ messages in thread
From: wilnerthomas--- via Users list for the GNU Emacs text editor @ 2022-08-25  0:28 UTC (permalink / raw)
  To: wilnerthomas; +Cc: Help Gnu Emacs


Aug 24, 2022, 23:48 by help-gnu-emacs@gnu.org:

>
> Aug 24, 2022, 23:23 by help-gnu-emacs@gnu.org:
>
>> 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))
>>
Does not look like the problem is with the function above, but with this one

Particularly the call to  (dolist (aggr (translate))

(defun shorten ()
  "Shorten word at point according to specific rules."

  (interactive)

  (let* ( (bounds  (bounds-of-thing-at-point 'word))
  
             (word  (downcase  (buffer-substring (car bounds) (cdr bounds))))

            (rplc "") )

    (goto-char (car bounds))
    
    (dolist (aggr (translate))
    
        (setq rplc (cdr (assoc word aggr)))
    
        (unless (null rplc)

             (add-to-list 'nscrip  (replace-regexp-in-string word rplc word)))) ))






^ 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).