all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Fix typo in register-list package
@ 2023-07-30 22:10 Evgenii Klimov
  2023-07-31 11:09 ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: Evgenii Klimov @ 2023-07-30 22:10 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 114 bytes --]

Hi, I'm not sure that this is the right place to send typo fix for
=register-list= ELPA package, but here it is.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-typos.patch --]
[-- Type: text/x-diff, Size: 1068 bytes --]

From 636099135109b5c8a789288f309509b41491979d Mon Sep 17 00:00:00 2001
From: Evgenii Klimov <eugene.dev@lipklim.org>
Date: Sun, 30 Jul 2023 22:40:42 +0100
Subject: [PATCH] Fix typos

---
 register-list.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/register-list.el b/register-list.el
index 846d3efe49..78d0db4bde 100644
--- a/register-list.el
+++ b/register-list.el
@@ -35,12 +35,12 @@
 ;; to concatenate the content of registers, mark them with `c' and
 ;; process with `x'.
 
-;; You can also edit the register's key with `k' and its value with `v'
+;; You can also edit the register's key with `e' and its value with `E'.
 ;; Hitting RET on a value string will jump to the register's location or
 ;; add the text to the kill ring.  Hitting RET on a register's type will
 ;; restrict the list to registers of this type.
 ;;
-;; Put this file into your load-path and the following into your ~/.emacs:
+;; Put this file into your load-path and the following into your ~/.emacs.d:
 ;;   (require 'register-list)
 ;; 
 ;;; Todo:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Fix typo in register-list package
  2023-07-30 22:10 Fix typo in register-list package Evgenii Klimov
@ 2023-07-31 11:09 ` Eli Zaretskii
  2023-07-31 12:01   ` Evgenii Klimov
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2023-07-31 11:09 UTC (permalink / raw)
  To: Evgenii Klimov; +Cc: emacs-devel

> From: Evgenii Klimov <eugene.dev@lipklim.org>
> Date: Sun, 30 Jul 2023 23:10:29 +0100
> 
> Hi, I'm not sure that this is the right place to send typo fix for
> =register-list= ELPA package, but here it is.

This is the right place (actually, bug-gnu-emacs@gnu.org is an even
better place).

> diff --git a/register-list.el b/register-list.el
> index 846d3efe49..78d0db4bde 100644
> --- a/register-list.el
> +++ b/register-list.el
> @@ -35,12 +35,12 @@
>  ;; to concatenate the content of registers, mark them with `c' and
>  ;; process with `x'.
>  
> -;; You can also edit the register's key with `k' and its value with `v'
> +;; You can also edit the register's key with `e' and its value with `E'.
>  ;; Hitting RET on a value string will jump to the register's location or
>  ;; add the text to the kill ring.  Hitting RET on a register's type will
>  ;; restrict the list to registers of this type.
>  ;;
> -;; Put this file into your load-path and the following into your ~/.emacs:
> +;; Put this file into your load-path and the following into your ~/.emacs.d:
>  ;;   (require 'register-list)
>  ;; 
>  ;;; Todo:

The second part of the patch is incorrect: the original text talks
about ~/.emacs, the user's init file, where's ~/.emacs.d is a
directory, not a file.

Thanks.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fix typo in register-list package
  2023-07-31 11:09 ` Eli Zaretskii
@ 2023-07-31 12:01   ` Evgenii Klimov
  0 siblings, 0 replies; 3+ messages in thread
From: Evgenii Klimov @ 2023-07-31 12:01 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 950 bytes --]


Eli Zaretskii <eliz@gnu.org> writes:

>> From: Evgenii Klimov <eugene.dev@lipklim.org>
>> Date: Sun, 30 Jul 2023 23:10:29 +0100
>> 
>> Hi, I'm not sure that this is the right place to send typo fix for
>> =register-list= ELPA package, but here it is.
>
> This is the right place (actually, bug-gnu-emacs@gnu.org is an even
> better place).

Thanks, I'll use bug-gnu-emacs@gnu.org the next time.

[...]
>> -;; Put this file into your load-path and the following into your ~/.emacs:
>> +;; Put this file into your load-path and the following into your ~/.emacs.d:
>>  ;;   (require 'register-list)
>>  ;; 
>>  ;;; Todo:
>
> The second part of the patch is incorrect: the original text talks
> about ~/.emacs, the user's init file, where's ~/.emacs.d is a
> directory, not a file.
>
> Thanks.

Indeed, I didn't pay attention.  Since it's not a typo, but a less
mainstream option (as far as I'm concerned), I dropped this part in the
new version below.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: v2-0001-Fix-typos.patch --]
[-- Type: text/x-diff, Size: 860 bytes --]

From 0ea1a2c575b218bc6a541620a000837b9d7eb738 Mon Sep 17 00:00:00 2001
From: Evgenii Klimov <eugene.dev@lipklim.org>
Date: Sun, 30 Jul 2023 22:40:42 +0100
Subject: [PATCH v2] Fix typos

---
 register-list.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/register-list.el b/register-list.el
index 34312607fa..db72186ed4 100644
--- a/register-list.el
+++ b/register-list.el
@@ -35,7 +35,7 @@
 ;; to concatenate the content of registers, mark them with `c' and
 ;; process with `x'.
 
-;; You can also edit the register's key with `k' and its value with `v'
+;; You can also edit the register's key with `e' and its value with `E'.
 ;; Hitting RET on a value string will jump to the register's location or
 ;; add the text to the kill ring.  Hitting RET on a register's type will
 ;; restrict the list to registers of this type.
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-07-31 12:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-30 22:10 Fix typo in register-list package Evgenii Klimov
2023-07-31 11:09 ` Eli Zaretskii
2023-07-31 12:01   ` Evgenii Klimov

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.