summaryrefslogtreecommitdiff
path: root/devel/distel/files/patch-elisp_erl-service.el
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2015-07-05 08:40:00 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2015-07-05 08:40:00 +0000
commit3c1d8d39dfe9b53ddbea94d55879a9c20ed434bb (patch)
tree16cb664a5a975faf34f7b4cad5ca57d9c2e3a9db /devel/distel/files/patch-elisp_erl-service.el
parentUpdate to upstream release 0.3.1 (diff)
Upgrade to version 4.0.7.
- Do not mute INSTALL commands - Remove unnecessary DOCS option
Diffstat (limited to 'devel/distel/files/patch-elisp_erl-service.el')
-rw-r--r--devel/distel/files/patch-elisp_erl-service.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/devel/distel/files/patch-elisp_erl-service.el b/devel/distel/files/patch-elisp_erl-service.el
deleted file mode 100644
index 05fad9de8acc..000000000000
--- a/devel/distel/files/patch-elisp_erl-service.el
+++ /dev/null
@@ -1,16 +0,0 @@
---- elisp/erl-service.el.orig
-+++ elisp/erl-service.el
-@@ -783,11 +783,11 @@
- (defun erl-search-function (function arity)
- "Goto the definition of FUNCTION/ARITY in the current buffer."
- (let ((origin (point))
-- (str (concat "\n" function "("))
-+ (str (concat "\n" function " *("))
- (searching t))
- (goto-char (point-min))
- (while searching
-- (cond ((search-forward str nil t)
-+ (cond ((search-forward-regexp str nil t)
- (backward-char)
- (when (or (null arity)
- (eq (erl-arity-at-point) arity))