* bug#32028: Fix thingatpt url's beginning-op
@ 2018-07-01 22:56 Raimon Grau
2018-07-29 18:34 ` Noam Postavsky
0 siblings, 1 reply; 2+ messages in thread
From: Raimon Grau @ 2018-07-01 22:56 UTC (permalink / raw)
To: 32028
[-- Attachment #1: Type: text/plain, Size: 405 bytes --]
Hello,
I found a small bug in thingatpt.el. `beginning-op' for url's was using
an incorrect helper (end-of-thing) and changed it to the correct one.
This is my first time sending a patch to this list so I might be missing
something or doing something wrong wrt process. If that's the case,
apologises in advance. (My fsf papers are signed, so there's no problem
on that regard)
Cheers,
Raimon Grau
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-url-s-thing-at-point-beginning-op.patch --]
[-- Type: text/x-diff, Size: 1258 bytes --]
From e725d737ea4bc5bb8545a10866ac59986c450d12 Mon Sep 17 00:00:00 2001
From: Raimon Grau <raimonster@gmail.com>
Date: Sun, 1 Jul 2018 21:31:08 +0100
Subject: [PATCH] Fix url's thing-at-point beginning-op
* lisp/thingatpt.el (url): Fix beginning-op making.
---
ChangeLog.3 | 6 ++++++
lisp/thingatpt.el | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog.3 b/ChangeLog.3
index 6704d0d..8d0a5dd 100644
--- a/ChangeLog.3
+++ b/ChangeLog.3
@@ -1,3 +1,9 @@
+2018-07-01 Raimon Grau <raimonster@gmail.com>
+
+ Fix url's thing-at-point beginning-op
+
+ * lisp/thingatpt.el (url): Fix beginning-op making.
+
2018-05-25 Noam Postavsky <npostavs@gmail.com>
Note caveat for backward regexp searching in docstring (Bug#31584)
diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el
index 4612e95..7fcb3bc 100644
--- a/lisp/thingatpt.el
+++ b/lisp/thingatpt.el
@@ -484,7 +484,7 @@ thing-at-point-newsgroup-p
(put 'url 'end-op (lambda () (end-of-thing 'url)))
-(put 'url 'beginning-op (lambda () (end-of-thing 'url)))
+(put 'url 'beginning-op (lambda () (beginning-of-thing 'url)))
;; The normal thingatpt mechanism doesn't work for complex regexps.
;; This should work for almost any regexp wherever we are in the
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#32028: Fix thingatpt url's beginning-op
2018-07-01 22:56 bug#32028: Fix thingatpt url's beginning-op Raimon Grau
@ 2018-07-29 18:34 ` Noam Postavsky
0 siblings, 0 replies; 2+ messages in thread
From: Noam Postavsky @ 2018-07-29 18:34 UTC (permalink / raw)
To: Raimon Grau; +Cc: 32028
tags 32028 fixed
close 32028 26.2
quit
Raimon Grau <raimonster@gmail.com> writes:
> I found a small bug in thingatpt.el. `beginning-op' for url's was using
> an incorrect helper (end-of-thing) and changed it to the correct one.
Thanks, pushed to emacs-26 [1: dd51434714].
> This is my first time sending a patch to this list so I might be missing
> something or doing something wrong wrt process.
It was fine, but the ChangeLog patch is not needed, that gets generated
automatically from the git log now.
[1: dd51434714]: 2018-07-29 12:07:07 -0400
Fix url's thing-at-point beginning-op (Bug#32028)
https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=dd514347140087112cdc632ac766a76fb4fe27f0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-07-29 18:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-01 22:56 bug#32028: Fix thingatpt url's beginning-op Raimon Grau
2018-07-29 18:34 ` Noam Postavsky
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.