emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re:Re: [elpa] externals/pyim bf3626c 05/36: * pyim-common.el (pyim-flatt


From: tumashu
Subject: Re:Re: [elpa] externals/pyim bf3626c 05/36: * pyim-common.el (pyim-flatten-list): Move from pyim.el
Date: Fri, 23 Apr 2021 12:44:11 +0800 (CST)

Fixed, thanks!








At 2021-04-23 11:10:42, "Stefan Monnier" <monnier@iro.umontreal.ca> wrote: >> +(defun pyim-flatten-list (my-list) >> + (cond >> + ((null my-list) nil) >> + ((atom my-list) (list my-list)) >> + (t (append (pyim-flatten-list (car my-list)) >> + (pyim-flatten-list (cdr my-list)))))) > >I believe this is called `flatten-tree` in Emacs-27. > > > Stefan

reply via email to

[Prev in Thread] Current Thread [Next in Thread]