all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
@ 2014-12-25 18:54 Mark Oteiza
  2015-09-02 17:35 ` Mark Oteiza
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Oteiza @ 2014-12-25 18:54 UTC (permalink / raw)
  To: 19441

---
The url library recognizes and parses man links.  thingatpt should do
the same.

 lisp/ChangeLog    | 4 ++++
 lisp/thingatpt.el | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6b0f296..9889472 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-25  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
+
+	* thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
+
 2014-12-25  Martin Rudalics  <rudalics@gmx.at>
 
 	* cus-start.el (resize-mini-windows): Make it customizable.
diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el
index ea5819e..a725a28 100644
--- a/lisp/thingatpt.el
+++ b/lisp/thingatpt.el
@@ -283,7 +283,7 @@ If nil, construct the regexp from `thing-at-point-uri-schemes'.")
     "uuid:" "vemmi://"  "webcal://" "xri://" "xmlrpc.beep://"
     "xmlrpc.beeps://" "z39.50r://" "z39.50s://" "xmpp:"
     ;; Compatibility
-    "fax:" "mms://" "mmsh://" "modem:" "prospero:" "snews:"
+    "fax:" "man:" "mms://" "mmsh://" "modem:" "prospero:" "snews:"
     "wais://")
   "List of URI schemes recognized by `thing-at-point-url-at-point'.
 Each string in this list should correspond to the start of a
-- 
2.2.1






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

* bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
  2014-12-25 18:54 bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links Mark Oteiza
@ 2015-09-02 17:35 ` Mark Oteiza
  2015-09-03 15:50   ` Stefan Monnier
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Oteiza @ 2015-09-02 17:35 UTC (permalink / raw)
  To: 19441

On 25/12/14 at 01:54pm, Mark Oteiza wrote:
> ---
> The url library recognizes and parses man links.  thingatpt should do
> the same.
> 
>  lisp/ChangeLog    | 4 ++++
>  lisp/thingatpt.el | 2 +-
>  2 files changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/lisp/ChangeLog b/lisp/ChangeLog
> index 6b0f296..9889472 100644
> --- a/lisp/ChangeLog
> +++ b/lisp/ChangeLog
> @@ -1,3 +1,7 @@
> +2014-12-25  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
> +
> +	* thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
> +
>  2014-12-25  Martin Rudalics  <rudalics@gmx.at>
>  
>  	* cus-start.el (resize-mini-windows): Make it customizable.
> diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el
> index ea5819e..a725a28 100644
> --- a/lisp/thingatpt.el
> +++ b/lisp/thingatpt.el
> @@ -283,7 +283,7 @@ If nil, construct the regexp from `thing-at-point-uri-schemes'.")
>      "uuid:" "vemmi://"  "webcal://" "xri://" "xmlrpc.beep://"
>      "xmlrpc.beeps://" "z39.50r://" "z39.50s://" "xmpp:"
>      ;; Compatibility
> -    "fax:" "mms://" "mmsh://" "modem:" "prospero:" "snews:"
> +    "fax:" "man:" "mms://" "mmsh://" "modem:" "prospero:" "snews:"
>      "wais://")
>    "List of URI schemes recognized by `thing-at-point-url-at-point'.
>  Each string in this list should correspond to the start of a
> -- 
> 2.2.1

Is there some reason this cannot be applied?





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

* bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
  2015-09-02 17:35 ` Mark Oteiza
@ 2015-09-03 15:50   ` Stefan Monnier
  2015-09-03 17:17     ` Drew Adams
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Monnier @ 2015-09-03 15:50 UTC (permalink / raw)
  To: Mark Oteiza; +Cc: 19441-done

> Is there some reason this cannot be applied?

Time?


        Stefan





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

* bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links.
  2015-09-03 15:50   ` Stefan Monnier
@ 2015-09-03 17:17     ` Drew Adams
  0 siblings, 0 replies; 4+ messages in thread
From: Drew Adams @ 2015-09-03 17:17 UTC (permalink / raw)
  To: Stefan Monnier, Mark Oteiza; +Cc: 19441-done

> > Is there some reason this cannot be applied?
> Time?

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9300





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

end of thread, other threads:[~2015-09-03 17:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-25 18:54 bug#19441: [PATCH] thingatpt.el (thing-at-point-uri-schemes): Recognize man: links Mark Oteiza
2015-09-02 17:35 ` Mark Oteiza
2015-09-03 15:50   ` Stefan Monnier
2015-09-03 17:17     ` Drew Adams

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.