* Quality of life improvements to macroexp.el
@ 2024-07-16 1:57 Thuna
2024-07-17 20:38 ` Jeremy Bryant
0 siblings, 1 reply; 7+ messages in thread
From: Thuna @ 2024-07-16 1:57 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 840 bytes --]
I was just looking into using macroexp.el and found some features that I
felt were lacking. These were: 1. accepting multiple forms in
`macroexp-if' and `macroexp-let*', 2. flattening of `progn's in
`macroexp-progn' and `macroexp-unprogn', 3. getting rid of branches in
`macroexp-if' in case the TEST is constant (and consequently a way to
tell whether a constant form is nil or non-nil). I've went through the
rest of macroexp.el and haven't found anything else that stood out,
though I might change my mind as I keep using it.
I've attached a patch for possible implementations of these, though this
is mostly so that I put this out there as a suggestion; considering how
many things depend on macroexp.el there might be good reasons why these
features are not worth the effort and possible bugs that come about due
to these changes.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Patch for macroexp.el --]
[-- Type: text/x-patch, Size: 6032 bytes --]
From 46f8f769aac7b59d25ecd413d9a7d6f75a78b5d2 Mon Sep 17 00:00:00 2001
From: Thuna <thuna.cing@gmail.com>
Date: Tue, 16 Jul 2024 03:44:28 +0200
Subject: [PATCH] Quality of life improvements in macroexp.el
* macroexp.el (macroexp-progn macroexp-unprogn): Flatten any nested
`progn's.
(macroexp-if): Accept multiple ELSE arguments. If TEST is always nil or
non-nil, return only TEST or ELSE (as a progn) respectively.
(macroexp-null): Define form to check whether a form will always return
nil. With this and `macroexp-const-p' we also have a way to check if it
will always return non-nil(?).
---
lisp/emacs-lisp/macroexp.el | 94 ++++++++++++++++++++++---------------
1 file changed, 57 insertions(+), 37 deletions(-)
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el
index f4df40249de..c8e0850226e 100644
--- a/lisp/emacs-lisp/macroexp.el
+++ b/lisp/emacs-lisp/macroexp.el
@@ -536,50 +536,61 @@ macroexp-parse-body
(defun macroexp-progn (exps)
"Return EXPS (a list of expressions) with `progn' prepended.
-If EXPS is a list with a single expression, `progn' is not
-prepended, but that expression is returned instead."
- (if (cdr exps) `(progn ,@exps) (car exps)))
+If EXPS is a list with a single expression, `progn' is not prepended,
+but that expression is returned instead. If EXPS is the empty list,
+return nil."
+ (let ((exps (remq nil (mapcan #'macroexp-unprogn exps))))
+ (cond ((null exps) nil)
+ ((null (cdr exps)) (car exps))
+ (t `(progn ,@exps)))))
(defun macroexp-unprogn (exp)
"Turn EXP into a list of expressions to execute in sequence.
Never returns an empty list."
- (if (eq (car-safe exp) 'progn) (or (cdr exp) '(nil)) (list exp)))
-
-(defun macroexp-let* (bindings exp)
- "Return an expression equivalent to \\=`(let* ,BINDINGS ,EXP)."
- (cond
- ((null bindings) exp)
- ((eq 'let* (car-safe exp)) `(let* (,@bindings ,@(cadr exp)) ,@(cddr exp)))
- (t `(let* ,bindings ,exp))))
+ (if (eq (car-safe exp) 'progn)
+ (or (remq nil (mapcan #'macroexp-unprogn (cdr exp)))
+ (list nil))
+ (list exp)))
+
+(defun macroexp-let* (bindings &rest exps)
+ "Return an expression equivalent to \\=`(let* ,BINDINGS ,@EXPS)."
+ (let ((exp (macroexp-progn exps)))
+ (cond
+ ((null bindings) exp)
+ ((eq 'let* (car-safe exp)) `(let* (,@bindings ,@(cadr exp)) ,@(cddr exp)))
+ (t `(let* ,bindings ,@exps)))))
-(defun macroexp-if (test then else)
+(defun macroexp-if (test then &rest else)
"Return an expression equivalent to \\=`(if ,TEST ,THEN ,ELSE)."
- (cond
- ((eq (car-safe else) 'if)
+ (let ((else (macroexp-progn else)))
(cond
- ;; Drop this optimization: It's unsafe (it assumes that `test' is
- ;; pure, or at least idempotent), and it's not used even a single
- ;; time while compiling Emacs's sources.
- ;;((equal test (nth 1 else))
- ;; ;; Doing a test a second time: get rid of the redundancy.
- ;; (message "macroexp-if: sharing 'test' %S" test)
- ;; `(if ,test ,then ,@(nthcdr 3 else)))
- ((equal then (nth 2 else))
- ;; (message "macroexp-if: sharing 'then' %S" then)
- `(if (or ,test ,(nth 1 else)) ,then ,@(nthcdr 3 else)))
- ((equal (macroexp-unprogn then) (nthcdr 3 else))
- ;; (message "macroexp-if: sharing 'then' with not %S" then)
- `(if (or ,test (not ,(nth 1 else)))
- ,then ,@(macroexp-unprogn (nth 2 else))))
- (t
- `(cond (,test ,@(macroexp-unprogn then))
- (,(nth 1 else) ,@(macroexp-unprogn (nth 2 else)))
- ,@(let ((def (nthcdr 3 else))) (if def `((t ,@def))))))))
- ((eq (car-safe else) 'cond)
- `(cond (,test ,@(macroexp-unprogn then)) ,@(cdr else)))
- ;; Invert the test if that lets us reduce the depth of the tree.
- ((memq (car-safe then) '(if cond)) (macroexp-if `(not ,test) else then))
- (t `(if ,test ,then ,@(if else (macroexp-unprogn else))))))
+ ((macroexp-null test) else)
+ ((macroexp-const-p test) then)
+ ((eq (car-safe else) 'if)
+ (cond
+ ;; Drop this optimization: It's unsafe (it assumes that `test' is
+ ;; pure, or at least idempotent), and it's not used even a single
+ ;; time while compiling Emacs's sources.
+ ;;((equal test (nth 1 else))
+ ;; ;; Doing a test a second time: get rid of the redundancy.
+ ;; (message "macroexp-if: sharing 'test' %S" test)
+ ;; `(if ,test ,then ,@(nthcdr 3 else)))
+ ((equal then (nth 2 else))
+ ;; (message "macroexp-if: sharing 'then' %S" then)
+ `(if (or ,test ,(nth 1 else)) ,then ,@(nthcdr 3 else)))
+ ((equal (macroexp-unprogn then) (nthcdr 3 else))
+ ;; (message "macroexp-if: sharing 'then' with not %S" then)
+ `(if (or ,test (not ,(nth 1 else)))
+ ,then ,@(macroexp-unprogn (nth 2 else))))
+ (t
+ `(cond (,test ,@(macroexp-unprogn then))
+ (,(nth 1 else) ,@(macroexp-unprogn (nth 2 else)))
+ ,@(let ((def (nthcdr 3 else))) (if def `((t ,@def))))))))
+ ((eq (car-safe else) 'cond)
+ `(cond (,test ,@(macroexp-unprogn then)) ,@(cdr else)))
+ ;; Invert the test if that lets us reduce the depth of the tree.
+ ((memq (car-safe then) '(if cond)) (macroexp-if `(not ,test) else then))
+ (t `(if ,test ,then ,@(if else (macroexp-unprogn else)))))))
(defmacro macroexp-let2 (test sym exp &rest body)
"Evaluate BODY with SYM bound to an expression for EXP's value.
@@ -677,6 +688,15 @@ macroexp--const-symbol-p
(progn (set symbol (symbol-value symbol)) nil)
(setting-constant t)))))))
+(defun macroexp-null (exp)
+ "Return non-nil if EXP will always evaluate to nil."
+ (or (eq exp nil)
+ (and (consp exp)
+ (memq (car exp) '(function quote \`))
+ (cdr exp)
+ (eq (cadr exp) nil)
+ (null (cadr exp)))))
+
(defun macroexp-const-p (exp)
"Return non-nil if EXP will always evaluate to the same value."
(cond ((consp exp) (or (eq (car exp) 'quote)
--
2.44.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
2024-07-16 1:57 Quality of life improvements to macroexp.el Thuna
@ 2024-07-17 20:38 ` Jeremy Bryant
2024-07-17 20:43 ` Thuna
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Jeremy Bryant @ 2024-07-17 20:38 UTC (permalink / raw)
To: Thuna; +Cc: emacs-devel
Thuna <thuna.cing@gmail.com> writes:
> I was just looking into using macroexp.el and found some features that I
> felt were lacking. These were: 1. accepting multiple forms in
> `macroexp-if' and `macroexp-let*', 2. flattening of `progn's in
> `macroexp-progn' and `macroexp-unprogn', 3. getting rid of branches in
> `macroexp-if' in case the TEST is constant (and consequently a way to
> tell whether a constant form is nil or non-nil). I've went through the
> rest of macroexp.el and haven't found anything else that stood out,
> though I might change my mind as I keep using it.
>
> I've attached a patch for possible implementations of these, though this
Thanks. For the fastest response and ease of tracking in the bug tracker:
Every patch must have several pieces of information before we can properly evaluate it. They are described below.
<https://www.gnu.org/software/emacs/manual/html_node/emacs/Sending-Patches.html>
When you have all these pieces, use the M-x submit-emacs-patch command to send the patch.
> is mostly so that I put this out there as a suggestion; considering how
> many things depend on macroexp.el there might be good reasons why these
> features are not worth the effort and possible bugs that come about due
> to these changes.
>
> From 46f8f769aac7b59d25ecd413d9a7d6f75a78b5d2 Mon Sep 17 00:00:00 2001
> From: Thuna <thuna.cing@gmail.com>
> Date: Tue, 16 Jul 2024 03:44:28 +0200
> Subject: [PATCH] Quality of life improvements in macroexp.el
>
> * macroexp.el (macroexp-progn macroexp-unprogn): Flatten any nested
> `progn's.
> (macroexp-if): Accept multiple ELSE arguments. If TEST is always nil or
> non-nil, return only TEST or ELSE (as a progn) respectively.
> (macroexp-null): Define form to check whether a form will always return
> nil. With this and `macroexp-const-p' we also have a way to check if it
> will always return non-nil(?).
> ---
> lisp/emacs-lisp/macroexp.el | 94 ++++++++++++++++++++++---------------
> 1 file changed, 57 insertions(+), 37 deletions(-)
>
> diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el
> index f4df40249de..c8e0850226e 100644
> --- a/lisp/emacs-lisp/macroexp.el
> +++ b/lisp/emacs-lisp/macroexp.el
> @@ -536,50 +536,61 @@ macroexp-parse-body
>
> (defun macroexp-progn (exps)
> "Return EXPS (a list of expressions) with `progn' prepended.
> -If EXPS is a list with a single expression, `progn' is not
> -prepended, but that expression is returned instead."
> - (if (cdr exps) `(progn ,@exps) (car exps)))
> +If EXPS is a list with a single expression, `progn' is not prepended,
> +but that expression is returned instead. If EXPS is the empty list,
> +return nil."
> + (let ((exps (remq nil (mapcan #'macroexp-unprogn exps))))
> + (cond ((null exps) nil)
> + ((null (cdr exps)) (car exps))
> + (t `(progn ,@exps)))))
>
> (defun macroexp-unprogn (exp)
> "Turn EXP into a list of expressions to execute in sequence.
> Never returns an empty list."
> - (if (eq (car-safe exp) 'progn) (or (cdr exp) '(nil)) (list exp)))
> -
> -(defun macroexp-let* (bindings exp)
> - "Return an expression equivalent to \\=`(let* ,BINDINGS ,EXP)."
> - (cond
> - ((null bindings) exp)
> - ((eq 'let* (car-safe exp)) `(let* (,@bindings ,@(cadr exp)) ,@(cddr exp)))
> - (t `(let* ,bindings ,exp))))
> + (if (eq (car-safe exp) 'progn)
> + (or (remq nil (mapcan #'macroexp-unprogn (cdr exp)))
> + (list nil))
> + (list exp)))
> +
> +(defun macroexp-let* (bindings &rest exps)
> + "Return an expression equivalent to \\=`(let* ,BINDINGS ,@EXPS)."
> + (let ((exp (macroexp-progn exps)))
> + (cond
> + ((null bindings) exp)
> + ((eq 'let* (car-safe exp)) `(let* (,@bindings ,@(cadr exp)) ,@(cddr exp)))
> + (t `(let* ,bindings ,@exps)))))
>
> -(defun macroexp-if (test then else)
> +(defun macroexp-if (test then &rest else)
> "Return an expression equivalent to \\=`(if ,TEST ,THEN ,ELSE)."
> - (cond
> - ((eq (car-safe else) 'if)
> + (let ((else (macroexp-progn else)))
> (cond
> - ;; Drop this optimization: It's unsafe (it assumes that `test' is
> - ;; pure, or at least idempotent), and it's not used even a single
> - ;; time while compiling Emacs's sources.
> - ;;((equal test (nth 1 else))
> - ;; ;; Doing a test a second time: get rid of the redundancy.
> - ;; (message "macroexp-if: sharing 'test' %S" test)
> - ;; `(if ,test ,then ,@(nthcdr 3 else)))
> - ((equal then (nth 2 else))
> - ;; (message "macroexp-if: sharing 'then' %S" then)
> - `(if (or ,test ,(nth 1 else)) ,then ,@(nthcdr 3 else)))
> - ((equal (macroexp-unprogn then) (nthcdr 3 else))
> - ;; (message "macroexp-if: sharing 'then' with not %S" then)
> - `(if (or ,test (not ,(nth 1 else)))
> - ,then ,@(macroexp-unprogn (nth 2 else))))
> - (t
> - `(cond (,test ,@(macroexp-unprogn then))
> - (,(nth 1 else) ,@(macroexp-unprogn (nth 2 else)))
> - ,@(let ((def (nthcdr 3 else))) (if def `((t ,@def))))))))
> - ((eq (car-safe else) 'cond)
> - `(cond (,test ,@(macroexp-unprogn then)) ,@(cdr else)))
> - ;; Invert the test if that lets us reduce the depth of the tree.
> - ((memq (car-safe then) '(if cond)) (macroexp-if `(not ,test) else then))
> - (t `(if ,test ,then ,@(if else (macroexp-unprogn else))))))
> + ((macroexp-null test) else)
> + ((macroexp-const-p test) then)
> + ((eq (car-safe else) 'if)
> + (cond
> + ;; Drop this optimization: It's unsafe (it assumes that `test' is
> + ;; pure, or at least idempotent), and it's not used even a single
> + ;; time while compiling Emacs's sources.
> + ;;((equal test (nth 1 else))
> + ;; ;; Doing a test a second time: get rid of the redundancy.
> + ;; (message "macroexp-if: sharing 'test' %S" test)
> + ;; `(if ,test ,then ,@(nthcdr 3 else)))
> + ((equal then (nth 2 else))
> + ;; (message "macroexp-if: sharing 'then' %S" then)
> + `(if (or ,test ,(nth 1 else)) ,then ,@(nthcdr 3 else)))
> + ((equal (macroexp-unprogn then) (nthcdr 3 else))
> + ;; (message "macroexp-if: sharing 'then' with not %S" then)
> + `(if (or ,test (not ,(nth 1 else)))
> + ,then ,@(macroexp-unprogn (nth 2 else))))
> + (t
> + `(cond (,test ,@(macroexp-unprogn then))
> + (,(nth 1 else) ,@(macroexp-unprogn (nth 2 else)))
> + ,@(let ((def (nthcdr 3 else))) (if def `((t ,@def))))))))
> + ((eq (car-safe else) 'cond)
> + `(cond (,test ,@(macroexp-unprogn then)) ,@(cdr else)))
> + ;; Invert the test if that lets us reduce the depth of the tree.
> + ((memq (car-safe then) '(if cond)) (macroexp-if `(not ,test) else then))
> + (t `(if ,test ,then ,@(if else (macroexp-unprogn else)))))))
>
> (defmacro macroexp-let2 (test sym exp &rest body)
> "Evaluate BODY with SYM bound to an expression for EXP's value.
> @@ -677,6 +688,15 @@ macroexp--const-symbol-p
> (progn (set symbol (symbol-value symbol)) nil)
> (setting-constant t)))))))
>
> +(defun macroexp-null (exp)
> + "Return non-nil if EXP will always evaluate to nil."
> + (or (eq exp nil)
> + (and (consp exp)
> + (memq (car exp) '(function quote \`))
> + (cdr exp)
> + (eq (cadr exp) nil)
> + (null (cadr exp)))))
> +
> (defun macroexp-const-p (exp)
> "Return non-nil if EXP will always evaluate to the same value."
> (cond ((consp exp) (or (eq (car exp) 'quote)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
2024-07-17 20:38 ` Jeremy Bryant
@ 2024-07-17 20:43 ` Thuna
2024-07-18 0:19 ` Thuna
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Thuna @ 2024-07-17 20:43 UTC (permalink / raw)
To: Jeremy Bryant; +Cc: emacs-devel
> Thanks. For the fastest response and ease of tracking in the bug tracker:
>
> Every patch must have several pieces of information before we can properly evaluate it. They are described below.
> <https://www.gnu.org/software/emacs/manual/html_node/emacs/Sending-Patches.html>
> When you have all these pieces, use the M-x submit-emacs-patch command to send the patch.
This wasn't necessarily meant as a patch to be accepted into Emacs, but
as a starting point for discussion on possible improvements. I've only
provided a sample patch in case anyone wanted to go ahead with pushing
the changes and didn't want to go through macroexp.el to figure out what
should go where.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
2024-07-17 20:38 ` Jeremy Bryant
2024-07-17 20:43 ` Thuna
@ 2024-07-18 0:19 ` Thuna
2024-07-18 13:04 ` Po Lu
[not found] ` <5421CEBD-571B-4C1C-9B55-F72DC4C89E5A@gmail.com>
3 siblings, 0 replies; 7+ messages in thread
From: Thuna @ 2024-07-18 0:19 UTC (permalink / raw)
To: Jeremy Bryant; +Cc: emacs-devel
[[ Sending again because the previous one didn't reach the mailing list. ]]
> Thanks. For the fastest response and ease of tracking in the bug tracker:
> Every patch must have several pieces of information before we can properly evaluate it. They are
> described below.
> <https://www.gnu.org/software/emacs/manual/html_node/emacs/Sending-Patches.html>
> When you have all these pieces, use the M-x submit-emacs-patch command to send the patch.
This wasn't necessarily meant as a patch to be accepted into Emacs, but
as a starting point for discussion on possible improvements. I've only
provided a sample patch in case anyone wanted to go ahead with pushing
the changes and didn't want to go through macroexp.el to figure out what
should go where.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
2024-07-17 20:38 ` Jeremy Bryant
2024-07-17 20:43 ` Thuna
2024-07-18 0:19 ` Thuna
@ 2024-07-18 13:04 ` Po Lu
2024-07-18 20:40 ` Jeremy Bryant
[not found] ` <5421CEBD-571B-4C1C-9B55-F72DC4C89E5A@gmail.com>
3 siblings, 1 reply; 7+ messages in thread
From: Po Lu @ 2024-07-18 13:04 UTC (permalink / raw)
To: Jeremy Bryant; +Cc: Thuna, emacs-devel
Jeremy Bryant <jb@jeremybryant.net> writes:
> Thuna <thuna.cing@gmail.com> writes:
>
>> I was just looking into using macroexp.el and found some features that I
>> felt were lacking. These were: 1. accepting multiple forms in
>> `macroexp-if' and `macroexp-let*', 2. flattening of `progn's in
>> `macroexp-progn' and `macroexp-unprogn', 3. getting rid of branches in
>> `macroexp-if' in case the TEST is constant (and consequently a way to
>> tell whether a constant form is nil or non-nil). I've went through the
>> rest of macroexp.el and haven't found anything else that stood out,
>> though I might change my mind as I keep using it.
>>
>> I've attached a patch for possible implementations of these, though this
>
> Thanks. For the fastest response and ease of tracking in the bug tracker:
>
> Every patch must have several pieces of information before we can properly evaluate it. They are described below.
> <https://www.gnu.org/software/emacs/manual/html_node/emacs/Sending-Patches.html>
> When you have all these pieces, use the M-x submit-emacs-patch command to send the patch.
This is in nowise a cast-iron requirement for submitted patches,
especially for small patches such as this is.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
[not found] ` <5421CEBD-571B-4C1C-9B55-F72DC4C89E5A@gmail.com>
@ 2024-07-18 13:42 ` Thuna
0 siblings, 0 replies; 7+ messages in thread
From: Thuna @ 2024-07-18 13:42 UTC (permalink / raw)
To: Mattias Engdegård; +Cc: emacs-devel
Mattias Engdegård <mattias.engdegard@gmail.com> writes:
> Hello Thuna,
>
>> I was just looking into using macroexp.el and found some features that I
>> felt were lacking. These were: 1. accepting multiple forms in
>> `macroexp-if' and `macroexp-let*', 2. flattening of `progn's in
>> `macroexp-progn' and `macroexp-unprogn', 3. getting rid of branches in
>> `macroexp-if' in case the TEST is constant (and consequently a way to
>> tell whether a constant form is nil or non-nil). I've went through the
>> rest of macroexp.el and haven't found anything else that stood out,
>> though I might change my mind as I keep using it.
>
> If they aren't in Emacs, it may be because nobody else has felt the need for them.
>
> Perhaps there is a misunderstanding of macros like `macroexp-progn`: their purpose is not to produce 'short' or 'neat' output, but to avoid consing more than necessary during the macro-expansion phase. It's just a (compilation) performance hack, and not a very important one either.
I expect that a non-insignificant number of people use packages such as
macrostep (or plain-old `macroexpand-1') to view expansions of forms
while debugging issues. To that end I would consider keeping a 'neat'
output a desirable if not significant goal. Of course, it should not
come at massive costs, so I would consider my sample implementations of
`macroexp-progn' and `macroexp-unprogn' as discardable, given the heavy
recursion.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Quality of life improvements to macroexp.el
2024-07-18 13:04 ` Po Lu
@ 2024-07-18 20:40 ` Jeremy Bryant
0 siblings, 0 replies; 7+ messages in thread
From: Jeremy Bryant @ 2024-07-18 20:40 UTC (permalink / raw)
To: Po Lu; +Cc: Thuna, emacs-devel
Po Lu <luangruo@yahoo.com> writes:
> Jeremy Bryant <jb@jeremybryant.net> writes:
>
>> Thuna <thuna.cing@gmail.com> writes:
>>
>>> I was just looking into using macroexp.el and found some features that I
>>> felt were lacking. These were: 1. accepting multiple forms in
>>> `macroexp-if' and `macroexp-let*', 2. flattening of `progn's in
>>> `macroexp-progn' and `macroexp-unprogn', 3. getting rid of branches in
>>> `macroexp-if' in case the TEST is constant (and consequently a way to
>>> tell whether a constant form is nil or non-nil). I've went through the
>>> rest of macroexp.el and haven't found anything else that stood out,
>>> though I might change my mind as I keep using it.
>>>
>>> I've attached a patch for possible implementations of these, though this
>>
>> Thanks. For the fastest response and ease of tracking in the bug tracker:
>>
>> Every patch must have several pieces of information before we can properly evaluate it. They are described below.
>> <https://www.gnu.org/software/emacs/manual/html_node/emacs/Sending-Patches.html>
>> When you have all these pieces, use the M-x submit-emacs-patch command to send the patch.
>
> This is in nowise a cast-iron requirement for submitted patches,
> especially for small patches such as this is.
OK, thanks Po for clarifying.
I was emphasizing the benefits of the bug tracker's features,
together with wider patch conventions, but I accept they could be overkill in
this situation.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-07-18 20:40 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-16 1:57 Quality of life improvements to macroexp.el Thuna
2024-07-17 20:38 ` Jeremy Bryant
2024-07-17 20:43 ` Thuna
2024-07-18 0:19 ` Thuna
2024-07-18 13:04 ` Po Lu
2024-07-18 20:40 ` Jeremy Bryant
[not found] ` <5421CEBD-571B-4C1C-9B55-F72DC4C89E5A@gmail.com>
2024-07-18 13:42 ` Thuna
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.