Eli Zaretskii writes: >> From: Noam Postavsky >> Date: Fri, 16 Mar 2018 20:34:25 -0400 >> Cc: Eric Skoglund , Pierre Neidhardt >> >> > ((string-match "\\`-\\([[:upper:]]+\\|[[:lower:]]+\\)\\'" arg) >> > - (setq signum (abs (string-to-number arg))))) >> > + (setq signum (make-symbol (substring arg 1 (length arg)))))) >> >> Not sure this `make-symbol' call, should it rather be `intern'? > > Yes, I think intern is better here. > >> (Maybe we should update signal-process take a string as well a >> symbol.) > > Possibly. > > Btw, the doc string of eshell/kill should be updated to reflect the > fact we now support symbolic names of Unix signals. Also, NEWS and > the Eshell manual should be updated. Here is an updated patch which hopefully fixes all the issues with the previous.