monnier pushed a commit to branch externals/auctex
in repository elpa.
commit 3a16f59c1ccc400e9f32335c5477298035aa6c62
Author: Tassilo Horn <[email protected]>
Date: Mon Sep 8 09:12:32 2014 +0200
Remove defalias docstring arg.
* tex.el (TeX-assoc-string): Remove docstring from defalias since
that's not supported with XEmacs.
---
ChangeLog | 5 +++++
tex.el | 6 +-----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 01ff6dc..9b70f3a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-09-08 Tassilo Horn <[email protected]>
+
+ * tex.el (TeX-assoc-string): Remove docstring from defalias since
+ that's not supported with XEmacs.
+
2014-08-25 Florent Rougon <[email protected]> (tiny change)
* tex-buf.el (TeX-command-expand): Fix possible endless loop in
diff --git a/tex.el b/tex.el
index cf56f90..f3316d5 100644
--- a/tex.el
+++ b/tex.el
@@ -597,11 +597,7 @@ Also does other stuff."
;;;###autoload
(defalias 'TeX-assoc-string
- (symbol-function (if (featurep 'xemacs) 'assoc 'assoc-string))
- (concat "Compatibility alias that points to
- function `assoc' with XEMACS and to function `assoc-string'
- with GNU EMACS. See function `"
- (if (featurep 'xemacs) "assoc" "assoc-string") "'." ))
+ (symbol-function (if (featurep 'xemacs) 'assoc 'assoc-string)))
;;; Documentation for Info-goto-emacs-command-node and similar