emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash d1913c6 210/439: Merge pull request #41 from Wilfr


From: Phillip Lord
Subject: [elpa] externals/dash d1913c6 210/439: Merge pull request #41 from Wilfred/master
Date: Tue, 04 Aug 2015 20:28:04 +0000

branch: externals/dash
commit d1913c6f8c330011c90069cb4d9c218291ac16cf
Merge: 0db2f5a b1cfe18
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Merge pull request #41 from Wilfred/master
    
    Fix incorrect alias checking in docs--signature
---
 dev/examples-to-docs.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dev/examples-to-docs.el b/dev/examples-to-docs.el
index a5be5d3..d533d66 100644
--- a/dev/examples-to-docs.el
+++ b/dev/examples-to-docs.el
@@ -16,7 +16,7 @@
   "Given FUNCTION (a symbol), return its argument list.
 FUNCTION may reference an elisp function, alias, macro or a subr."
   (let* ((function-value (indirect-function function))
-         (is-alias (eq function-value (symbol-function function)))
+         (is-alias (not (eq function-value (symbol-function function))))
          ;; if FUNCTION isn't an alias, function-symbol is simply FUNCTION
          (function-symbol function))
     



reply via email to

[Prev in Thread] Current Thread [Next in Thread]