diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-09-22 11:00:03 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-09-22 11:01:41 -0400 |
commit | 30a4cdb0701942ee0cc8aff4f8f7f78dd658e2d6 (patch) | |
tree | afb0bbd49f76d630437a0443c27366e4da3776f9 /lisp | |
parent | e6ee384b94fc7aff516aed60b0243f4c7a900584 (diff) | |
download | emacs.d-30a4cdb0701942ee0cc8aff4f8f7f78dd658e2d6.tar.gz |
open-github-patch: Escape unintentional wildcard
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-util.el b/lisp/km-util.el index 1678161..1dc9f48 100644 --- a/lisp/km-util.el +++ b/lisp/km-util.el @@ -51,7 +51,7 @@ point in the buffer." (with-current-buffer buffer (save-excursion (goto-char (point-min)) - (if (re-search-forward "https://github.com/.*\\.patch" nil t) + (if (re-search-forward "https://github\\.com/.*\\.patch" nil t) (match-string-no-properties 0) (user-error "No patch found")))))) (with-current-buffer (get-buffer-create |