unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Richard Stallman <rms@gnu.org>
To: Philip Kaludercic <philipk@posteo.net>
Cc: emacs-devel@gnu.org
Subject: Re: cond*
Date: Thu, 28 Dec 2023 22:52:58 -0500	[thread overview]
Message-ID: <E1rJ3ve-0005k5-TI@fencepost.gnu.org> (raw)
In-Reply-To: <87wmsz7lzn.fsf@posteo.net> (message from Philip Kaludercic on Wed, 27 Dec 2023 14:34:20 +0000)

[[[ To any NSA and FBI agents reading my email: please consider    ]]]
[[[ whether defending the US Constitution against all enemies,     ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]

I include below the latest version.

Compare the total complexity of specification of cond* with the total
complexity of specification of pcase.  Then likewise compare the
generality and flexibility of cond* with pcase.

Each clause in cond* that has just one element -- no "clause body" --
is a "non-exit" clause.  After that clause completes, control always
proceeds to the following clause.

All other clauses are like cond clauses, in that when the condition is
true, the executes its clause body and then exits the cond*.

  (cond* 
       ;; Same as a clause in `cond',
       (CONDITION
        DO-THIS-IF-TRUE-THEN-EXIT...)

       ;; Execute FORM and ignore its value.
       (FORM)

       ;; Variables to bind, as in let*, around the rest
       ;; of the cond*.
       ((bind* (x foobar) y z (foo 5) a))
       ;; Bindings continue in effect for the whole cond* construct.

       ;; Bind variables for the clause, as in let*.
       ((bind* (foo 5) (condition (hack-it foo)))
        ;; condition is that the last variable bound be non-nil.
        BODY...)
       ;; Bindings no longer in effect.

       ;; Extracts substructure and binds variables for the clause.
       ((match* `(expt ,foo ,bar) x)
        DO-THIS-IF-IT-MATCHED-THEN-EXIT...)
       ;; Bindings no longer in effect.

       ;; Extracts substructure and binds variables
       ;; for the rest of the cond*.
       ;; Like above but always falls thru to next clause.
       ;; All the variables mentioned in the pattern
       ;; are bound whether match succeeds or not.
       ;; If a value can be determined from an incomplete match,
       ;; the variable gets that value.
       ((match* `(expt ,foo ,bar) x))
       ;; Bindings continue in effect.

       ;; Another example of fall-through match* clause.
       ;; All the variables mentioned in the pattern
       ;; are bound in all cases.
       ((match* (or `() `(,macroexp-const-p const)) body)

;; The `match-set*' is a tentative proposal.  It may not be worth including.
       ;; Extracts substructure and sets variables if match succeeds
       ((match-set* `(expt ,foo ,bar) x)
        DO-THIS-IF-IT-MATCHED-THEN-EXIT...)

       ;; Extracts substructure and sets variables without binding them.
       ;; Always falls thru to next clause.
       ((match-set* `(expt ,foo ,bar) x))
       )

To execute several expressions and not exit, use this:

       ((progn DO-THIS-UNCONDITIONALLY-AND-DONT-STOP...)

To test CONDITION and return its value if non-nil, use this:

       (CONDITION CONDITION)

That is the best way when CONDITION is simple.  When it is complex,
this may be clearer and shorter than repeating CONDITION:

       ((bind* (value CONDITION))
        value)
\f
**Possible types of patterns for match*.

CONSTANT: nil, t, a keyword, a quoted constant other than a cons cell,
          fixed parts of a backquote.

  This matches any value equal to CONSTANT.

_

  _ means to match any value and not store it anywhere.

VARIABLE: a symbol

  A symbol means to match any value and set VARIABLE to it.

A backquoted cons cell

  The car and the cdr are subpattenrs.  The cons cell pattern
  matches any cons cell whose car and cdr match those two subpatterns.
  How nil as a cdr matches is controlled by the match-nil flag.

  When the nil-match-all flag is false, nil as a cdr matches
  only nil itself.

  When the nil-match-all flag is true, nil as a cdr matches
  any object and ignores that object.

  The nil-match-all flag is false by default.  The `cdr' pattern maks
  it false within its its subpattern, and the `cdr-safe' pattern makes
  it true forwithin its its subpattern.

(cdr-safe QUOTED-CONS-CELL)

  This pattern is equivalent to QUOTED-CONS-CELL by itself
  except that it makes the nil-match-all flag true within it.

     (cdr-safe `(a b))  matches (a b), (a b c), (a b . d), etc.

(cdr QUOTED-CONS-CELL)

  This pattern is equivalent to QUOTED-CONS-CELL by itself
  except that it makes the nil-match-all flag false within it.

     (cdr `(a b))  matches only (a b).

A backquoted vector

  Each element is a subpattern.  This
  matches a vector of data if each element of that vector is
  matched by the corresponding subpattern.

A backquoted structure constructor

  Each field is a subpattern.  This matches a structure as data if
  each field element of that structure is matched by the corresponding
  subpattern.

Constrained variable: (PRED VARIABLE)  or, more generally,
                      (PRED VARIABLE OTHER-ARGS...)

  This matches any value VALUE that satisfies the specified
  constraint.  PRED is a function to test the constraint.  It receives
  VALUE as its first argument.  If PRED returns true, that means VALUE
  satisfies the constraint, so this pattern binds (or sets) VARIABLE
  to that value.  For instance,

     (symbolp sym)   ; Match any symbol, bind `sym' to it.

xxxxxxxxxxxxxx not decided yet
    This would give some added power, but does that power really enable
    the user to do more with cond*?  I am not sure.

  PATTERN can also be a list, which is a pattern to destructure,
  For instance,

     (plistp `(,a ,b . ,rest))

  checks that VA<UE is a valid plist, then binds a and b to the first
  and second element and binds rest to its cddr.
xxxxxxxxxxxxxx not decided yet

  If you wish, you can specify additional arguments to pass to PRED.
  The OTHER-ARGS are not patterns to match, they are Lisp expressions
  whose values specify the additional arguments to pass to PRED,
  following the first argument which is VALUE.  In effect, the call
  to PRED looks like this:

      (apply PRED VALUE (mapcar 'eval OTHER-ARGS))

  Here are two examples of passing an additional argument.
 
     (> num-foos 1)  ; Match any number greater than 1, bind `num-foos' to it.
     (> num-foos min-foos)  ; Match any number greater than MIN-FOOS,
                            ;  bind `num-foos' to it.

  When matching to bind variables, the presence of a constrained
  variable pattern, as a subpattern of the overall pattern to be
  matched, unconditionally binds VARIABLE whether the subpattern
  matches or not.

  Errors in constrained variable constructs:

  If an error occurs in testing the constraint, or calculating 
  the other arguments to pass to the predicate, that pattern fails
  to match but does not terminate the cond* form.

  Constrained variable constructs can be nested:

  For example,


    (integerp (> num-foos 1))  ; Match any integer > 1,
                               ;  bind `num-foos' to it.

  nests the constrained pattern (integerp num-foos) inside the
  constrained pattern (< ... 1).  This nested constrained pattern
  first tests that the value is greater than 1, then tests it is an
  integer.  If both of those constraints are true, it setse `num-foos'.

    (> (integerp num-foos) 1)  ; Match any integer > 1,
                               ;  bind `num-foos' to it.

  does the two tests in the opposite order; it is equivalent, because
  an error in the call to `>' only makes this pattern fail to match.

  Advanced hack for experts: the OTHER-ARGS can refer to variables
  bound earlier in this pattern-matching operation.  For example,

  `(,(integerp smaller) ,(> (integerp bigger) smaller))
     ; Matches a list of two integers in which the second integer
     ; is larger than the first.

  (or `(,(integerp smaller) ,(> (integerp bigger) smaller))
      `(,(integerp bigger) ,(< (integerp smaller) bigger)))
     ; matches a ist of two integers and binds `bigger' to the bigger one
     ; and `smaller' to the smaller one.

  However, it might be cleaner to match the two integers regardless of
  their numberical ordering, then in Lisp code see which one is larger.

General constrained variable: (constrain VAR EXPRESSION)

  This general constrained variable pattern binds VAR to the
  value being matched against, tentatively, then evaluates EXPRESSION.
  If the result is true, the match succeeds and leaves VAR
  bound to that value.

  For instance,

    (constrain x (and (> x 0) (< x 100)))

  succeeds if the value being matched aainst is in the open interval (0, 100),
  and in that case it binds x to that value.

Alternatives: (or SUBPATTERNS...)

  This tries to match each of the SUBPATTERNS in order until one matches.
  If the pattern is being used to bind variables, it binds all the variables
  specified in any of SUBPATTERNS
\f
These three ways of using `cond*' are worth noting.

(cond* ((match*  PATTERN VALUE) TEST))

       PATTERN is a pattern as described above.  For instance
       (match `(+ (expt ,_ ,_)) (get-complex-list))
       would decompose the result of (get-complex-list) and check
       for `+' and `expt' in it.

       PATTERN will not be evaluated, just used as guidance when the
       `match' form is macroexpanded.

       If PATTERN includes substitutions, it will virtually perform
       those substitutions and compare parts of VALUE against them.
       (match `(foo ,foo) x) compares (car x) with `foo'.

       TEST is a Lisp expression to be evaluated if VALUE seems
       to fit PATTERN.  If TEST evaluates non-nil, the match succeeds.

       `match' returns t if it succeeds in matching, otherwise nil.

       `match' can also handle vectors and maybe some other kinds of
       structures.


(cond* ((match-set*  PATTERN VALUE)))

       PATTERN is a pattern as described above.  For instance
       (match-set `(+ ,y ,z) (get-complex-list))
       would decompose the result of (get-complex-list), verify the car,
       and set y and z.  It is equivalent to this:

       (if (eq (car value) '+)
           (progn
             (setq y (car (cadr value)) z (cadr (cadr value)))
             TEST))

       PATTERN will not be evaluated, just used as guidance when the
       `match-set' form is macroexpanded, producing code like this:

       TEST is a Lisp expression to be evaluated if VALUE seems
       to fit PATTERN.  If TEST evaluates non-nil, the match succeeds.

       `match-set' returns t if it succeeds in matching, otherwise nil.
       
       `match-set' can also handle vectors and maybe some other kinds of
       structures.


(cond* ((match*  PATTERN VALUE) BODY...))

       Like the previous, except that instead of setting the
       variables found in PATTERN, it let-binds them and runs BODY
       with those bindings.

-- 
Dr Richard Stallman (https://stallman.org)
Chief GNUisance of the GNU Project (https://gnu.org)
Founder, Free Software Foundation (https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)





  reply	other threads:[~2023-12-29  3:52 UTC|newest]

Thread overview: 343+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-16  3:04 Instead of pcase Richard Stallman
2023-11-16  7:37 ` Philip Kaludercic
2023-11-16 17:18   ` T.V Raman
2023-11-16 17:44     ` Michael Heerdegen
2023-11-16 18:16       ` Philip Kaludercic
2023-11-17  8:54         ` Complex SPEC for variables/customization like font-lock-keywords/org-capture-templates/etc (was: Instead of pcase) Ihor Radchenko
2023-11-25  4:03           ` Complex SPEC for variables/customization like font-lock-keywords/org-capture-templates/etc Stefan Monnier
2023-11-16 19:19       ` Instead of pcase Eli Zaretskii
2023-11-17  8:02         ` Michael Heerdegen
2023-11-16 18:21     ` Dmitry Gutov
2023-11-16 18:39       ` T.V Raman
2023-11-16 18:47         ` Philip Kaludercic
2023-11-16 18:51           ` T.V Raman
2023-11-18  3:04           ` Richard Stallman
2023-11-19 12:23             ` Michael Heerdegen
2023-11-19 16:02               ` Barry Fishman
2023-11-19 17:59                 ` Dmitry Gutov
2023-11-19 19:31                   ` Eric Abrahamsen
2023-11-25  4:23                     ` Stefan Monnier via Emacs development discussions.
2023-11-27  3:12                       ` Richard Stallman
2023-11-19 21:15                   ` Barry Fishman
2023-11-20  1:15                     ` Dmitry Gutov
2023-11-20 15:32                     ` Michael Heerdegen
2023-11-23  2:57                       ` Richard Stallman
2023-11-24 17:14                         ` Dmitry Gutov
2023-11-27  3:09                           ` Richard Stallman
2023-11-27 12:21                             ` Dmitry Gutov
2023-11-29  3:42                               ` Richard Stallman
2023-11-29 12:56                                 ` Dmitry Gutov
2023-12-01  3:17                                   ` Richard Stallman
2023-11-28  2:44                           ` Richard Stallman
2023-11-28 12:39                             ` Dmitry Gutov
2023-11-30  3:37                               ` Richard Stallman
2023-12-01  0:18                                 ` Dmitry Gutov
2023-12-01  5:51                                   ` Emanuel Berg
2023-12-10  8:34                                     ` Alfred M. Szmidt
2023-12-10  9:35                                       ` Eli Zaretskii
2023-12-10  9:53                                         ` Alfred M. Szmidt
2023-12-10 10:35                                           ` Eli Zaretskii
2023-12-10 11:05                                             ` Alfred M. Szmidt
2023-12-01  7:21                                   ` Eli Zaretskii
2023-12-01  8:03                                     ` Manuel Giraud via Emacs development discussions.
2023-12-02  3:21                                   ` Richard Stallman
2023-11-24 18:14                         ` Michael Heerdegen
2023-11-24 18:35                           ` Dmitry Gutov
2023-11-27  3:14                           ` Richard Stallman
2023-11-28  2:46                             ` Richard Stallman
2023-11-28  6:35                               ` Nikita Domnitskii
2023-11-30  3:37                                 ` Richard Stallman
2023-12-02 21:37                                 ` Lynn Winebarger
2023-12-10 15:14                             ` Richard Stallman
2023-12-10 16:27                               ` Lynn Winebarger
2023-12-10 20:28                                 ` Michael Heerdegen via Emacs development discussions.
2023-12-10 21:13                                   ` Lynn Winebarger
2023-12-12  3:43                                   ` Richard Stallman
2023-12-12  6:46                                     ` Tomas Hlavaty
2023-12-12 15:18                                     ` [External] : " Drew Adams
2023-12-14  3:24                                       ` Richard Stallman
2023-12-14 16:52                                         ` Drew Adams
2023-12-16  4:24                                           ` Richard Stallman
2023-12-16  5:04                                             ` Drew Adams
2023-12-16 18:30                                               ` Bob Rogers
2023-12-18  4:13                                                 ` Richard Stallman
2023-12-12 19:24                                     ` Tomas Hlavaty
2023-12-12 21:36                                       ` [External] : " Drew Adams
2023-12-12 22:25                                         ` Michael Heerdegen via Emacs development discussions.
2023-12-13  1:32                                     ` Adam Porter
2023-12-14  3:23                                       ` Richard Stallman
2023-12-16  4:23                                       ` Richard Stallman
2023-12-18  4:09                                         ` cond* Richard Stallman
2023-12-18 10:08                                           ` cond* João Távora
2023-12-21  4:20                                             ` cond* Richard Stallman
2023-12-21  9:50                                               ` cond* João Távora
2023-12-21 16:01                                                 ` [External] : cond* Drew Adams
2023-12-21 16:20                                                   ` João Távora
2023-12-24  3:56                                                   ` Richard Stallman
2023-12-24  3:57                                                 ` cond* Richard Stallman
2023-12-21 14:10                                               ` cond* Ihor Radchenko
2023-12-24  3:57                                                 ` cond* Richard Stallman
2023-12-25 14:14                                                   ` cond* Ihor Radchenko
2023-12-19  3:49                                           ` cond* Richard Stallman
2023-12-19 12:13                                             ` cond* João Távora
2023-12-22  3:14                                               ` cond* Richard Stallman
2023-12-22  7:27                                                 ` cond* Philip Kaludercic
2023-12-25  3:41                                                   ` cond* Richard Stallman
2023-12-25 12:32                                                     ` cond* Philip Kaludercic
2023-12-27  4:54                                                       ` cond* Richard Stallman
2023-12-27 14:34                                                         ` cond* Philip Kaludercic
2023-12-29  3:52                                                           ` Richard Stallman [this message]
2024-01-01 14:49                                                             ` cond* Ihor Radchenko
2024-01-03  4:13                                                               ` cond* Richard Stallman
2024-01-03 15:57                                                                 ` cond* Ihor Radchenko
2024-01-05  4:23                                                                   ` cond* Richard Stallman
2024-01-06 14:33                                                                     ` cond* Ihor Radchenko
2024-01-06 22:25                                                                       ` [External] : cond* Drew Adams
2024-01-08  3:45                                                                         ` Richard Stallman
2024-01-08 15:20                                                                           ` Drew Adams
2024-01-09  2:53                                                                           ` map seq and radix-tree-leaf, in pcase Richard Stallman
2024-01-08  3:47                                                                       ` cond* Richard Stallman
2024-01-10 13:03                                                                         ` cond* Ihor Radchenko
2024-01-13  3:50                                                                           ` cond* Richard Stallman
2024-01-13  6:32                                                                             ` cond* Adam Porter
2024-01-16  3:31                                                                               ` cond* Richard Stallman
2024-01-13 19:47                                                                             ` cond* Ihor Radchenko
2024-01-15  3:13                                                                               ` cond* Richard Stallman
2024-01-08  3:47                                                                       ` cond* Richard Stallman
2024-01-08 15:13                                                                         ` cond* Ihor Radchenko
2024-01-27  3:37                                                                           ` cond* Richard Stallman
2024-02-01 16:26                                                                             ` cond* Ihor Radchenko
2024-02-03  3:36                                                                               ` cond* Richard Stallman
2024-02-03 16:52                                                                                 ` cond* Ihor Radchenko
2024-01-03  4:13                                                               ` cond* Richard Stallman
2024-01-03 15:48                                                                 ` cond* Ihor Radchenko
2024-01-06  4:31                                                                   ` cond* Richard Stallman
2024-01-06 13:09                                                                     ` cond* Ihor Radchenko
2024-01-08  3:47                                                                       ` cond* Richard Stallman
2024-01-08 15:26                                                                         ` cond* Ihor Radchenko
2024-01-27  3:37                                                                           ` cond* Richard Stallman
2024-01-03  4:13                                                               ` cond* Richard Stallman
2024-01-03 15:50                                                                 ` cond* Ihor Radchenko
2024-01-06  4:31                                                                   ` cond* Richard Stallman
2024-01-06 13:13                                                                     ` cond* Ihor Radchenko
2024-01-08  3:47                                                                       ` cond* Richard Stallman
2024-01-08 15:35                                                                         ` cond* Ihor Radchenko
2023-12-19 15:53                                             ` [External] : cond* Drew Adams
2023-12-21  4:22                                               ` Richard Stallman
2023-12-21  4:22                                               ` Richard Stallman
2023-12-18  4:09                                         ` cond* Richard Stallman
2023-12-18  5:41                                           ` cond* Adam Porter
2023-12-21  4:20                                             ` cond* Richard Stallman
2023-12-16  4:23                                       ` Instead of pcase Richard Stallman
2023-12-16  4:23                                       ` Richard Stallman
2023-12-16  6:57                                         ` Adam Porter
2023-12-20  3:28                                           ` Richard Stallman
2023-12-20 10:52                                             ` Adam Porter
2023-12-23  2:53                                               ` Richard Stallman
2023-12-23  2:53                                               ` Richard Stallman
2023-12-25 14:26                                                 ` Ihor Radchenko
2023-12-27  4:54                                                   ` Richard Stallman
2023-12-28 13:05                                                     ` Ihor Radchenko
2023-12-30  3:20                                                       ` Richard Stallman
2024-01-01 14:33                                                         ` Ihor Radchenko
2024-01-03  4:13                                                           ` Richard Stallman
2024-01-03  4:13                                                           ` Richard Stallman
2024-01-03 16:08                                                             ` Ihor Radchenko
2024-01-05  4:23                                                               ` Richard Stallman
2024-01-06 13:04                                                                 ` Ihor Radchenko
2024-01-08  3:47                                                                   ` Richard Stallman
2024-01-08 15:42                                                                     ` Ihor Radchenko
2024-01-27  3:37                                                                       ` Richard Stallman
2023-12-13  4:58                                     ` Richard Stallman
2023-12-11  3:31                                 ` Richard Stallman
2023-11-19 13:49             ` Dmitry Gutov
2023-11-21  2:42               ` Richard Stallman
2023-11-21  5:14                 ` Jim Porter
2023-11-21  5:34                 ` Yuri Khan
2023-11-21 11:11                 ` Dmitry Gutov
2023-11-21 15:38                   ` Michael Heerdegen
2023-11-23  3:00                     ` Richard Stallman
2023-11-24  3:34                   ` Richard Stallman
2023-11-24  4:30                     ` Jim Porter
2023-11-24  7:45                       ` Eli Zaretskii
2023-11-25  3:08                       ` Emanuel Berg
2023-11-24 17:01                     ` Dmitry Gutov
2023-11-24 17:29                 ` Lynn Winebarger
2023-11-28  2:44                   ` Richard Stallman
2023-11-30 19:14                     ` Lynn Winebarger
2023-11-30 19:26                       ` Eli Zaretskii
2023-11-30 20:30                         ` Michael Heerdegen via Emacs development discussions.
2023-12-01  6:24                           ` Eli Zaretskii
2023-12-01 15:47                             ` Michael Heerdegen via Emacs development discussions.
2023-12-01 16:07                               ` Eli Zaretskii
2023-12-01 20:27                               ` Alan Mackenzie
2023-12-02 13:24                                 ` Michael Heerdegen via Emacs development discussions.
2023-12-02 13:51                                   ` Emanuel Berg
2023-12-04  3:11                                   ` Richard Stallman
2023-12-03  3:28                                 ` Richard Stallman
2023-11-30 20:47                         ` João Távora
2023-12-01  6:31                           ` Eli Zaretskii
2023-12-01  7:07                             ` Yuri Khan
2023-12-01  8:10                               ` Eli Zaretskii
2023-12-01  9:04                                 ` Andreas Schwab
2023-12-04  3:08                                   ` Richard Stallman
2023-12-04 11:58                                     ` Eli Zaretskii
2023-12-04 12:35                                       ` Lynn Winebarger
2023-12-04 13:20                                         ` Eli Zaretskii
2023-12-04 17:46                                           ` Andreas Schwab
2023-12-07  2:48                                             ` Richard Stallman
2023-12-07 17:42                                               ` Andreas Schwab
2023-12-09  4:02                                                 ` Richard Stallman
2023-12-04 18:17                                           ` Lynn Winebarger
2023-12-04 12:37                                       ` Dmitry Gutov
2023-12-08  3:54                                         ` Richard Stallman
2023-12-01 10:13                                 ` João Távora
2023-12-01  8:35                             ` Andreas Schwab
2023-12-01 10:02                             ` João Távora
2023-12-01 11:52                               ` Eli Zaretskii
2023-12-01 12:48                                 ` Dmitry Gutov
2023-12-01 14:44                                   ` Eli Zaretskii
2023-12-01 18:28                                     ` Dmitry Gutov
2023-12-01 18:40                                       ` Eli Zaretskii
2023-12-01 18:45                                       ` João Távora
2024-01-09  5:36                                         ` Stefan Kangas
2023-12-01 13:28                                 ` João Távora
2023-12-01 16:25                                 ` Andreas Schwab
2024-01-09  5:33                               ` Stefan Kangas
2024-01-09 10:43                                 ` João Távora
2023-12-01 16:04                             ` Michael Heerdegen via Emacs development discussions.
2023-12-01 16:33                               ` Eli Zaretskii
2023-12-02  3:20                       ` Richard Stallman
2023-12-02  8:41                         ` Andreas Schwab
2023-12-02  9:02                           ` Philip Kaludercic
2023-12-02 10:14                             ` Emanuel Berg
2023-12-02 17:02                               ` Barry Fishman
2023-12-02 20:25                                 ` Michael Heerdegen via Emacs development discussions.
2023-12-03  4:30                                 ` Emanuel Berg
2023-12-05  2:58                           ` Richard Stallman
2023-12-05  3:36                             ` chad
2023-12-08  3:53                               ` Richard Stallman
2023-12-02 14:33                         ` Michael Heerdegen via Emacs development discussions.
2023-12-04  3:11                           ` Richard Stallman
2023-12-02 18:01                         ` Lynn Winebarger
2023-12-04  3:11                           ` Richard Stallman
2023-12-04 12:27                             ` Lynn Winebarger
2023-12-03  3:27                         ` Richard Stallman
2023-11-25  4:15                 ` Stefan Monnier
2023-11-27  3:12                   ` Richard Stallman
2023-11-30 18:06                     ` Michael Heerdegen
2023-11-16 18:49         ` Dmitry Gutov
2023-11-16 23:41     ` Emanuel Berg
2023-11-17  7:34       ` Eli Zaretskii
2023-11-26  3:17   ` Richard Stallman
2023-11-16 15:06 ` Michael Heerdegen
2023-11-16 17:31   ` T.V Raman
2023-11-16 18:26     ` Jim Porter
2023-11-16 18:40       ` T.V Raman
2023-11-16 19:13         ` Jim Porter
2023-11-20  3:06   ` Richard Stallman
2023-11-20 14:35     ` Michael Heerdegen
2023-11-23  2:57       ` Richard Stallman
2023-11-16 15:20 ` Spencer Baugh
2023-11-16 20:16   ` Tomas Hlavaty
2023-11-16 21:37     ` [External] : " Drew Adams
2023-11-25  4:34     ` Stefan Monnier via Emacs development discussions.
2023-11-25  8:53       ` Eli Zaretskii
2023-11-18  3:03   ` combining cond and let, to replace pcase Richard Stallman
2023-11-19 11:20     ` Michael Heerdegen
2023-11-19 11:43       ` Eli Zaretskii
2023-11-19 12:16         ` Gerd Möllmann
2023-11-19 13:21           ` Eli Zaretskii
2023-11-19 13:32             ` Gerd Möllmann
2023-11-19 14:41               ` Eli Zaretskii
2023-11-19 15:27                 ` Gerd Möllmann
2023-11-19 15:29                   ` Eli Zaretskii
2023-11-19 16:03           ` Joost Kremers
2023-11-19 16:59             ` Eli Zaretskii
2023-11-19 18:29               ` Joost Kremers
2023-11-19 18:35                 ` Eli Zaretskii
2023-11-19 12:50         ` Michael Heerdegen
2023-11-19 13:08           ` Eli Zaretskii
2023-11-19 13:52             ` Michael Heerdegen
2023-11-19 14:45               ` Eli Zaretskii
2023-11-20 15:35                 ` Michael Heerdegen
2023-11-20 16:37                   ` Eli Zaretskii
2023-11-21  8:33                     ` Michael Heerdegen
2023-11-21  8:39                       ` Michael Heerdegen
2023-11-19 13:59             ` Dmitry Gutov
2023-11-19 14:49               ` Eli Zaretskii
2023-11-19 14:53                 ` Dmitry Gutov
2023-11-19 12:04       ` Gerd Möllmann
2023-11-19 18:10       ` Tomas Hlavaty
2023-11-25  4:45         ` Stefan Monnier via Emacs development discussions.
2023-11-28 15:31           ` João Távora
2023-11-28 15:55             ` Stefan Monnier
2023-11-19 21:36       ` Alan Mackenzie
2023-11-21 16:14         ` Michael Heerdegen
2023-11-19 16:08     ` Axel Forsman
2023-11-21 15:53     ` Michael Heerdegen
2023-11-23  2:58     ` Richard Stallman
2023-11-23  7:02       ` Tomas Hlavaty
2023-11-26  3:14         ` Richard Stallman
2023-11-27 17:07           ` Tomas Hlavaty
2023-11-27 17:59             ` Yuri Khan
2023-11-28 14:25               ` Tomas Hlavaty
2023-11-23  8:58       ` Manuel Giraud via Emacs development discussions.
2023-11-26  3:14         ` Richard Stallman
2023-11-24  3:08       ` Daniel Semyonov
2023-11-24  3:26         ` Daniel Semyonov
2023-11-25  2:59         ` Richard Stallman
2023-11-25  5:11       ` Stefan Monnier via Emacs development discussions.
2023-11-27  3:11         ` Richard Stallman
2023-11-27 18:13           ` Manuel Giraud via Emacs development discussions.
2023-11-27 18:49             ` Yuri Khan
2023-11-27 23:12               ` Stefan Monnier
2023-11-29  3:41               ` Richard Stallman
2023-11-29  3:40             ` Richard Stallman
2023-11-27  3:11         ` Richard Stallman
2023-11-16 18:11 ` Instead of pcase Emanuel Berg
2023-11-16 19:26   ` Eli Zaretskii
2023-11-16 22:16     ` Emanuel Berg
2023-11-17  7:30       ` Eli Zaretskii
2023-11-17  8:09         ` Emanuel Berg
2023-11-17 12:16           ` Eli Zaretskii
2023-11-18  6:26             ` Emanuel Berg
2023-11-18  7:21               ` Po Lu
2023-11-18  7:41                 ` Eli Zaretskii
2023-11-16 18:22 ` Jim Porter
2023-11-16 22:55   ` Emanuel Berg
2023-11-17  5:36   ` Po Lu
2023-11-19 11:48     ` Michael Heerdegen
2023-11-19 12:50       ` Eli Zaretskii
2023-11-19 14:05         ` Dmitry Gutov
2023-11-19 14:41           ` Po Lu
2023-11-19 14:44             ` Dmitry Gutov
2023-11-19 14:52           ` Eli Zaretskii
2023-11-19 14:58             ` Dmitry Gutov
2023-11-19 15:14               ` Eli Zaretskii
2023-11-19 18:04                 ` Dmitry Gutov
2023-11-19 18:30                   ` Eli Zaretskii
2023-11-19 18:51                     ` Dmitry Gutov
2023-11-19 19:49                       ` Eli Zaretskii
2023-11-21  2:43               ` Richard Stallman
2023-11-19 14:14         ` Michael Heerdegen
2023-11-19 15:09           ` Eli Zaretskii
2023-11-20 14:52             ` Michael Heerdegen
2023-11-19 14:29       ` Po Lu
2023-11-20 15:20         ` Michael Heerdegen
2023-11-20 15:29         ` Dmitry Gutov
2023-11-20 23:43           ` Po Lu
2023-11-21  1:09             ` Dmitry Gutov
2023-11-21  1:49               ` Po Lu
2023-11-21  1:59                 ` Dmitry Gutov
2023-11-21  4:04                   ` Po Lu
2023-11-21 11:27                     ` Dmitry Gutov
2023-11-21 11:49                       ` Po Lu
2023-11-20 23:45           ` Jose E. Marchesi
2023-11-20 23:54             ` Emanuel Berg
2023-11-21  2:01             ` Dmitry Gutov
2023-11-22  2:59               ` Richard Stallman
2023-11-22  3:29                 ` Emanuel Berg
2023-11-22 11:58                 ` Dmitry Gutov
2023-11-24  3:38                   ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2023-12-23  6:17 Re: cond* Pedro Andres Aranda Gutierrez
2023-12-26  4:03 ` cond* Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1rJ3ve-0005k5-TI@fencepost.gnu.org \
    --to=rms@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=philipk@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

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).