From: Tino Calancha <tino.calancha@gmail.com>
To: Allen Li <vianchielfaura@gmail.com>
Cc: 28008@debbugs.gnu.org, tino.calancha@gmail.com
Subject: bug#28008: 25.2; Resume kmacro definition errors C-u C-u <F3>
Date: Fri, 11 Aug 2017 21:41:58 +0900 [thread overview]
Message-ID: <87d182p97t.fsf@calancha-pc> (raw)
In-Reply-To: <CAJr1M6eAYF93THiZs_JySOPKkYis62dM2QkNXMp8aV+sR3LCkg@mail.gmail.com> (Allen Li's message of "Tue, 8 Aug 2017 10:16:13 -0700")
Allen Li <vianchielfaura@gmail.com> writes:
> That does make a kind of sense, but it seems to make the feature
> useless for half the cases where you would want to use it.
>
> I found others with the same use case asking the same question:
> https://emacs.stackexchange.com/questions/3211/how-to-resume-an-incomplete-keyboard-macro-recording
>
> Having any input error cause the macro recording to die makes
> recording macros precarious. One accidental typo, say C-x instead of
> C-c, and you can't even C-g out of it, without having to start over or
> take a detour through lossage.
>
> I can understand a bare C-g canceling the macro definition, but why
> not have errors save the macro definition? I can't think of any case
> where I would want an error to not save the macro I have been
> painstakingly defining, but plenty of cases where I would want to
> resume or edit a macro definition after an error. Heck, there's the
> macro ring if you really wanted the previous macro.
Following are examples for all snippets suggested in this thread and the
stackexchage question:
A. In the stackexchange question, the OP says that after 4. below
your macro is lost:
1. f3
2. hello
3. C-s
4. C-g
;; but it's not lost: the macro was saved:
M-: last-kbd-macro RET
"hello"
;; You can edit it:
5. C-x C-k C-e ; edit as needed
6. C-c C-c
7. C-u C-u f3
8. SPC world f4
;; Now you have recorded a macro with inserts
;; "hello world" in current buffer.
F4 ; call the macro.
B. Same applies to the following example:
1. f3
2. ab
3. Alt-x ; Mistake: you don't want this.
4. C-g
5. M-: last-kbd-macro RET ; The macro is saved.
=> "ab"
C. AFAICT, if we get an error the macro is saved as well:
;; Write a file /tmp/macro.el with content:
--8<-----------------------------cut here---------------start------------->8---
(defun test ()
(interactive)
(error "Got an error while defininig a kbd macro"))
(global-set-key (kbd "<f8>") 'test)
--8<-----------------------------cut here---------------end--------------->8---
1. emacs -Q /tmp/macro.el
2. f3 ab f8 ; An error stop kbd macro recording.
3. M-: last-kbd-macro RET ; Macro was saved.
=> "ab"
D. Endeed, with your recipes the macro is lost:
D.1. First recipe:
1. emacs -Q
2. F3
3. my namo ; Type some stuff
4. C-g
5. C-u C-u F3
;; here we haven't saved a macro:
M-: last-kbd-macro RET
nil
;; An user should use 'DEL' rather than 'C-g' in 4. above:
;; (Should we remark this in the manual/docstring?)
1. emacs -Q
2. F3
3. my namo ; Type some stuff: upps a typo! Must read 'my name'
4. DEL e SPC is SPC John SPC Doe F4
;; Now you have recorded a macro with inserts
;; "my name is John Doe" in current buffer.
M-: last-kbd-macro RET
=> [109 121 32 110 97 109 111 backspace 101 32 105 115 ...]
D.2. Second recipe: This seems quite annoying.
1. emacs -Q
2. F3
3. ab
4. C-x ; mistake
5. C-g
6. M-: last-kbd-macro RET
=> nil
* The main concern is D.2: it looks similar than A, B, but it doesn't save
the current kbd macro recording.
** Patch 1 always save the macro in `last-kbd-macro' after an error or 'C-g'.
Then, A. B. and D.2 behaves similarly.
** Patch 2 adds a new variable `last-aborted-kbd-macro': it saves the partial
macro there after an error or 'C-g'. Called `start-kbd-macro' with
APPEND non-nil offers to append on `last-aborted-kbd-macro'; possible answers
are 'yes', 'no' or 'del' (i.e., append on `last-aborted-kbd-macro' after delete
its last character).
This is not backward compatible; for instance, the snippets A, B above won't be
saved in `last-kbd-macro' (currently they do).
It's more tidy; it separates 'good macros', i.e. those ended after
'F4' or 'C-x )', from 'partial macros', i.e., those ended after an error or 'C-g'.
;;; Patch 1
--8<-----------------------------cut here---------------start------------->8---
commit ce21412d69deeffc55f2c891886351e1384f88cd
Author: Tino Calancha <tino.calancha@gmail.com>
Date: Fri Aug 11 21:08:48 2017 +0900
Save aborted kbd macro definitions
While a defining a kbd macro, if we get an error or if the user inputs C-g,
then save the aborted kbd macro record (Bug#28008).
* lisp/kmacro.el (kmacro-start-macro): Signal an error if APPEND is non-nil
and last-kbd-macro is nil.
* src/keyboard.c (cmd_error): Increase buffer size for macroerror
to accommodate new error message.
If we are defining a kbd macro and we got an error, then save the
current progress in last-kbd-macro.
(init_kboard): Initialize last-aborted-kbd-macro.
(mark_kboards): Mark last-aborted-kbd-macro.
* src/keyboard.h (save_aborted_kbd_macro): Declare this function.
* src/macros.c (save_aborted_kbd_macro): New function.
(store_kbd_macro_char): Call save_aborted_kbd_macro when user inputs C-g.
diff --git a/lisp/kmacro.el b/lisp/kmacro.el
index 2db8061fa4..8eff7e5c2e 100644
--- a/lisp/kmacro.el
+++ b/lisp/kmacro.el
@@ -584,7 +584,8 @@ kmacro-start-macro
kmacro-last-counter kmacro-counter
kmacro-counter-format kmacro-default-counter-format
kmacro-counter-format-start kmacro-default-counter-format))
-
+ (when (and append (null last-kbd-macro))
+ (user-error "No kbd macro has been defined"))
(start-kbd-macro append
(and append
(if kmacro-execute-before-append
diff --git a/src/keyboard.c b/src/keyboard.c
index 97069a24ac..5111e2c358 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -941,7 +941,8 @@ static Lisp_Object
cmd_error (Lisp_Object data)
{
Lisp_Object old_level, old_length;
- char macroerror[sizeof "After..kbd macro iterations: "
+ char macroerror[sizeof "Saved aborted kbd macro in \
+`last-kbd-macro' after error: "
+ INT_STRLEN_BOUND (EMACS_INT)];
#ifdef HAVE_WINDOW_SYSTEM
@@ -949,7 +950,13 @@ cmd_error (Lisp_Object data)
cancel_hourglass ();
#endif
- if (!NILP (executing_kbd_macro))
+ if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
+ {
+ sprintf (macroerror,
+ "Saved aborted kbd macro in `last-kbd-macro' after error: ");
+ save_aborted_kbd_macro (false);
+ }
+ else if (!NILP (executing_kbd_macro))
{
if (executing_kbd_macro_iterations == 1)
sprintf (macroerror, "After 1 kbd macro iteration: ");
diff --git a/src/keyboard.h b/src/keyboard.h
index 2219c01135..676ccd83cc 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -463,6 +463,8 @@ extern bool lucid_event_type_list_p (Lisp_Object);
extern void kbd_buffer_store_event (struct input_event *);
extern void kbd_buffer_store_buffered_event (union buffered_input_event *,
struct input_event *);
+extern Lisp_Object save_aborted_kbd_macro (bool);
+
INLINE void
kbd_buffer_store_event_hold (struct input_event *event,
struct input_event *hold_quit)
diff --git a/src/macros.c b/src/macros.c
index f0ffda3f44..8e45b5fce7 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -39,15 +39,50 @@ EMACS_INT executing_kbd_macro_iterations;
Lisp_Object executing_kbd_macro;
+/* Save the aborted macro.
+ Called if an error happens, or if the user inputs C-g,
+ while defining a kbd macro. */
+
+Lisp_Object
+save_aborted_kbd_macro (bool msg)
+{
+ struct kboard *kb = current_kboard;
+ /* Must contain something; otherwise don't save it. */
+ if (kb->kbd_macro_end != kb->kbd_macro_buffer)
+ {
+ end_kbd_macro ();
+ if (msg)
+ {
+ message1 ("Saved aborted kbd macro in `last-kbd-macro'");
+ /* Set inhibit_quit to until sleep_for ends */
+ Vinhibit_quit = Qt;
+ Fsleep_for (make_number (1), Qnil);
+ Vinhibit_quit = Qnil;
+ }
+ }
+
+ return Qnil;
+}
+
+
DEFUN ("start-kbd-macro", Fstart_kbd_macro, Sstart_kbd_macro, 1, 2, "P",
doc: /* Record subsequent keyboard input, defining a keyboard macro.
The commands are recorded even as they are executed.
Use \\[end-kbd-macro] to finish recording and make the macro available.
Use \\[name-last-kbd-macro] to give it a permanent name.
-Non-nil arg (prefix arg) means append to last macro defined;
-this begins by re-executing that macro as if you typed it again.
-If optional second arg, NO-EXEC, is non-nil, do not re-execute last
-macro before appending to it. */)
+A call to \\[keyboard-quit] aborts the record and sets `last-aborted-kbd-macro'.
+
+If optional arg APPEND is non-nil, then append to last macro defined;
+ this begins by re-executing that macro as if you typed it again. Called
+ interactively with a prefix set APPEND non-nil.
+If optional second arg NO-EXEC is non-nil, do not re-execute last
+ macro before appending to it. Called interactively with 2 prefices
+ set NO-EXEC non-nil.
+If `last-aborted-kbd-macro' is non-nil, then ask if we must
+ append on it; there are 3 possible options:
+ yes: append on `last-aborted-kbd-macro'.
+ no: append on `last-kbd-macro', if non-nil.
+ del: append on `last-aborted-kbd-macro' after skip its last character.*/)
(Lisp_Object append, Lisp_Object no_exec)
{
if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
@@ -182,6 +217,10 @@ store_kbd_macro_char (Lisp_Object c)
if (!NILP (KVAR (kb, defining_kbd_macro)))
{
+ /* We received a Quit: save the current kboard in Vlast_kbd_macro */
+ if (XFASTINT (c) == quit_char)
+ save_aborted_kbd_macro (true);
+
if (kb->kbd_macro_ptr - kb->kbd_macro_buffer == kb->kbd_macro_bufsize)
{
ptrdiff_t ptr_offset = kb->kbd_macro_ptr - kb->kbd_macro_buffer;
--8<-----------------------------cut here---------------end--------------->8---
In GNU Emacs 26.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.11)
of 2017-08-09
Repository revision: e3ed43f4ac667d39fffcc48cfbe97b074f9aa5c7
;;; Patch 2
--8<-----------------------------cut here---------------start------------->8---
commit da8cf2a563eb25609562fe12c1dd98fc45befdf1
Author: Tino Calancha <tino.calancha@gmail.com>
Date: Fri Aug 11 21:09:31 2017 +0900
Save aborted kbd macro definitions
Add a new variable 'last-aborted-kbd-macro'; if we get an error, or if
the user inputs C-g, then save the aborted kbd macro record on this
variable.
When called 'start-kbd-macro' with APPEND non-nil, offer to append on
'last-aborted-kbd-macro', if this variable is non-nil (Bug#28008).
* lisp/kmacro.el (kmacro-start-macro): Signal an error if APPEND is non-nil
and both, last-kbd-macro and last-aborted-kbd-macro are nil.
* src/keyboard.c (cmd_error): Increase buffer size for macroerror
to accommodate new error message.
If we are defining a kbd macro, then save the current progress in
last-aborted-kbd-macro.
(init_kboard): Initialize last-aborted-kbd-macro.
(mark_kboards): Mark last-aborted-kbd-macro.
* src/keyboard.h (struct kboard): Add new member Vlast_aborted_kbd_macro_.
(kset_last_aborted_kbd_macro): Add setter.
(save_aborted_kbd_macro): Declare this function.
* src/macros.c (last-aborted-kbd-macro): New variable.
(save_aborted_kbd_macro): New function.
(start-kbd-macro): Offer to append on last-aborted-kbd-macro, if non-nil.
(store_kbd_macro_char): Call save_aborted_kbd_macro when user inputs C-g.
diff --git a/lisp/kmacro.el b/lisp/kmacro.el
index 2db8061fa4..2e79269fd1 100644
--- a/lisp/kmacro.el
+++ b/lisp/kmacro.el
@@ -584,7 +584,8 @@ kmacro-start-macro
kmacro-last-counter kmacro-counter
kmacro-counter-format kmacro-default-counter-format
kmacro-counter-format-start kmacro-default-counter-format))
-
+ (when (and append (null (or last-kbd-macro last-aborted-kbd-macro)))
+ (user-error "No kbd macro has been defined"))
(start-kbd-macro append
(and append
(if kmacro-execute-before-append
diff --git a/src/keyboard.c b/src/keyboard.c
index 97069a24ac..79bad93a5b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -941,7 +941,8 @@ static Lisp_Object
cmd_error (Lisp_Object data)
{
Lisp_Object old_level, old_length;
- char macroerror[sizeof "After..kbd macro iterations: "
+ char macroerror[sizeof "Saved aborted kbd macro in \
+`last-aborted-kbd-macro' after error: "
+ INT_STRLEN_BOUND (EMACS_INT)];
#ifdef HAVE_WINDOW_SYSTEM
@@ -949,7 +950,13 @@ cmd_error (Lisp_Object data)
cancel_hourglass ();
#endif
- if (!NILP (executing_kbd_macro))
+ if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
+ {
+ sprintf (macroerror,
+ "Saved aborted kbd macro in `last-aborted-kbd-macro' after error: ");
+ save_aborted_kbd_macro (false);
+ }
+ else if (!NILP (executing_kbd_macro))
{
if (executing_kbd_macro_iterations == 1)
sprintf (macroerror, "After 1 kbd macro iteration: ");
@@ -10864,6 +10871,7 @@ init_kboard (KBOARD *kb, Lisp_Object type)
kb->kbd_macro_bufsize = 0;
kset_defining_kbd_macro (kb, Qnil);
kset_last_kbd_macro (kb, Qnil);
+ kset_last_aborted_kbd_macro (kb, Qnil);
kb->reference_count = 0;
kset_system_key_alist (kb, Qnil);
kset_system_key_syms (kb, Qnil);
@@ -11977,6 +11985,7 @@ mark_kboards (void)
mark_object (KVAR (kb, kbd_queue));
mark_object (KVAR (kb, defining_kbd_macro));
mark_object (KVAR (kb, Vlast_kbd_macro));
+ mark_object (KVAR (kb, Vlast_aborted_kbd_macro));
mark_object (KVAR (kb, Vsystem_key_alist));
mark_object (KVAR (kb, system_key_syms));
mark_object (KVAR (kb, Vwindow_system));
diff --git a/src/keyboard.h b/src/keyboard.h
index 2219c01135..24868f6dc1 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -133,6 +133,9 @@ struct kboard
/* Last anonymous kbd macro defined. */
Lisp_Object Vlast_kbd_macro_;
+ /* Last interrupted kbd macro. */
+ Lisp_Object Vlast_aborted_kbd_macro_;
+
/* Alist of system-specific X windows key symbols. */
Lisp_Object Vsystem_key_alist_;
@@ -207,6 +210,11 @@ kset_last_kbd_macro (struct kboard *kb, Lisp_Object val)
kb->Vlast_kbd_macro_ = val;
}
INLINE void
+kset_last_aborted_kbd_macro (struct kboard *kb, Lisp_Object val)
+{
+ kb->Vlast_aborted_kbd_macro_ = val;
+}
+INLINE void
kset_prefix_arg (struct kboard *kb, Lisp_Object val)
{
kb->Vprefix_arg_ = val;
@@ -463,6 +471,8 @@ extern bool lucid_event_type_list_p (Lisp_Object);
extern void kbd_buffer_store_event (struct input_event *);
extern void kbd_buffer_store_buffered_event (union buffered_input_event *,
struct input_event *);
+extern Lisp_Object save_aborted_kbd_macro (bool);
+
INLINE void
kbd_buffer_store_event_hold (struct input_event *event,
struct input_event *hold_quit)
diff --git a/src/macros.c b/src/macros.c
index f0ffda3f44..6c33d420c7 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -39,15 +39,53 @@ EMACS_INT executing_kbd_macro_iterations;
Lisp_Object executing_kbd_macro;
+/* Save the aborted macro.
+ Called if an error happens, or if the user inputs C-g,
+ while defining a kbd macro. */
+
+Lisp_Object
+save_aborted_kbd_macro (bool msg)
+{
+ struct kboard *kb = current_kboard;
+ Lisp_Object last_macro = KVAR (kb, Vlast_kbd_macro);
+ /* Must contain something; otherwise don't save it. */
+ if (kb->kbd_macro_end != kb->kbd_macro_buffer)
+ {
+ end_kbd_macro ();
+ kset_last_aborted_kbd_macro (kb, KVAR (kb, Vlast_kbd_macro));
+ kset_last_kbd_macro (kb, last_macro);
+ if (msg)
+ {
+ message1 ("Saved aborted kbd macro in `last-aborted-kbd-macro'");
+ /* Set inhibit_quit to until sleep_for ends */
+ Vinhibit_quit = Qt;
+ Fsleep_for (make_number (1), Qnil);
+ Vinhibit_quit = Qnil;
+ }
+ }
+
+ return Qnil;
+}
+
+
DEFUN ("start-kbd-macro", Fstart_kbd_macro, Sstart_kbd_macro, 1, 2, "P",
doc: /* Record subsequent keyboard input, defining a keyboard macro.
The commands are recorded even as they are executed.
Use \\[end-kbd-macro] to finish recording and make the macro available.
Use \\[name-last-kbd-macro] to give it a permanent name.
-Non-nil arg (prefix arg) means append to last macro defined;
-this begins by re-executing that macro as if you typed it again.
-If optional second arg, NO-EXEC, is non-nil, do not re-execute last
-macro before appending to it. */)
+A call to \\[keyboard-quit] aborts the record and sets `last-aborted-kbd-macro'.
+
+If optional arg APPEND is non-nil, then append to last macro defined;
+ this begins by re-executing that macro as if you typed it again. Called
+ interactively with a prefix set APPEND non-nil.
+If optional second arg NO-EXEC is non-nil, do not re-execute last
+ macro before appending to it. Called interactively with 2 prefices
+ set NO-EXEC non-nil.
+If `last-aborted-kbd-macro' is non-nil, then ask if we must
+ append on it; there are 3 possible options:
+ yes: append on `last-aborted-kbd-macro'.
+ no: append on `last-kbd-macro', if non-nil.
+ del: append on `last-aborted-kbd-macro' after skip its last character.*/)
(Lisp_Object append, Lisp_Object no_exec)
{
if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
@@ -79,9 +117,59 @@ macro before appending to it. */)
int incr = 30;
ptrdiff_t i, len;
bool cvt;
+ Lisp_Object last_macro = KVAR (current_kboard, Vlast_kbd_macro);
+ /* If true, then drop last character from the aborted macro. */
+ bool del_last;
+ /* If there is a previous aborted macro, offer to use it. */
+ if (!NILP (KVAR (current_kboard, Vlast_aborted_kbd_macro)))
+ {
+ Lisp_Object ans;
+ bool loop_end = 1;
+ AUTO_STRING (prompt, "Use aborted macro? [yes, no, del] ");
+ while (loop_end)
+ {
+ ans = Fdowncase (Fread_from_minibuffer (prompt, Qnil, Qnil, Qnil,
+ Qnil, Qnil, Qnil));
+ if (SCHARS (ans) == 3 && (!strcmp (SSDATA (ans), "yes")
+ || !strcmp (SSDATA (ans), "del")))
+ {
+ last_macro = KVAR (current_kboard, Vlast_aborted_kbd_macro);
+ /* We cannot execute an aborted macro */
+ if (NILP (no_exec))
+ {
+ message1 ("We cannot execute an aborted macro");
+ no_exec = Qt;
+ }
+ if (!strcmp (SSDATA (ans), "del"))
+ {
+ del_last = 1;
+ /* current_kboard->kbd_macro_end--; */
+ /* current_kboard->kbd_macro_ptr--; */
+ }
+ loop_end = 0;
+ }
+ else if (SCHARS (ans) == 2 && !strcmp (SSDATA (ans), "no"))
+ {
+ if (!NILP (KVAR (current_kboard, Vlast_kbd_macro)))
+ last_macro = KVAR (current_kboard, Vlast_kbd_macro);
+ else
+ error ("No kbd macro has been defined");
+ loop_end = 0;
+ }
+ else
+ {
+ Fding (Qnil);
+ Fdiscard_input ();
+ message1 ("Please answer yes or no or del");
+ Fsleep_for (make_number (2), Qnil);
+ }
+ }
+ kset_last_aborted_kbd_macro (current_kboard, Qnil);
+ }
/* Check the type of last-kbd-macro in case Lisp code changed it. */
- len = CHECK_VECTOR_OR_STRING (KVAR (current_kboard, Vlast_kbd_macro));
+ len = CHECK_VECTOR_OR_STRING (last_macro);
+ if (del_last) len--;
/* Copy last-kbd-macro into the buffer, in case the Lisp code
has put another macro there. */
@@ -93,11 +181,11 @@ macro before appending to it. */)
sizeof *current_kboard->kbd_macro_buffer);
/* Must convert meta modifier when copying string to vector. */
- cvt = STRINGP (KVAR (current_kboard, Vlast_kbd_macro));
+ cvt = STRINGP (last_macro);
for (i = 0; i < len; i++)
{
Lisp_Object c;
- c = Faref (KVAR (current_kboard, Vlast_kbd_macro), make_number (i));
+ c = Faref (last_macro, make_number (i));
if (cvt && NATNUMP (c) && (XFASTINT (c) & 0x80))
XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80));
current_kboard->kbd_macro_buffer[i] = c;
@@ -109,8 +197,7 @@ macro before appending to it. */)
/* Re-execute the macro we are appending to,
for consistency of behavior. */
if (NILP (no_exec))
- Fexecute_kbd_macro (KVAR (current_kboard, Vlast_kbd_macro),
- make_number (1), Qnil);
+ Fexecute_kbd_macro (last_macro, make_number (1), Qnil);
message1 ("Appending to kbd macro...");
}
@@ -182,6 +269,10 @@ store_kbd_macro_char (Lisp_Object c)
if (!NILP (KVAR (kb, defining_kbd_macro)))
{
+ /* We received a Quit: save the current kboard in Vlast_aborted_kbd_macro */
+ if (XFASTINT (c) == quit_char)
+ save_aborted_kbd_macro (true);
+
if (kb->kbd_macro_ptr - kb->kbd_macro_buffer == kb->kbd_macro_bufsize)
{
ptrdiff_t ptr_offset = kb->kbd_macro_ptr - kb->kbd_macro_buffer;
@@ -374,4 +465,7 @@ This is nil when not executing a keyboard macro. */);
DEFVAR_KBOARD ("last-kbd-macro", Vlast_kbd_macro,
doc: /* Last kbd macro defined, as a string or vector; nil if none defined. */);
+
+ DEFVAR_KBOARD ("last-aborted-kbd-macro", Vlast_aborted_kbd_macro,
+ doc: /* Last aborted kbd macro, as a string or vector; nil if none exist. */);
}
--8<-----------------------------cut here---------------end--------------->8---
In GNU Emacs 26.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.11)
of 2017-08-09
Repository revision: e3ed43f4ac667d39fffcc48cfbe97b074f9aa5c7
next prev parent reply other threads:[~2017-08-11 12:41 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-08 4:10 bug#28008: 25.2; Resume kmacro definition errors C-u C-u <F3> Allen Li
2017-08-08 5:26 ` Tino Calancha
2017-08-08 17:16 ` Allen Li
2017-08-11 12:41 ` Tino Calancha [this message]
2017-08-11 13:00 ` Eli Zaretskii
2017-08-11 13:17 ` Tino Calancha
2017-08-12 3:03 ` Tino Calancha
2017-08-13 21:13 ` Allen Li
2017-09-18 20:02 ` Allen Li
2017-09-19 7:42 ` Allen Li
2017-09-30 3:47 ` Allen Li
2017-09-30 4:20 ` Tino Calancha
2017-09-30 13:48 ` Eli Zaretskii
2020-08-24 14:07 ` Lars Ingebrigtsen
2018-09-09 0:23 ` Allen Li
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87d182p97t.fsf@calancha-pc \
--to=tino.calancha@gmail.com \
--cc=28008@debbugs.gnu.org \
--cc=vianchielfaura@gmail.com \
/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 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.