branch: externals/auctex
commit 1def8bd5709c41c8ef526eca0d69a195ddec0529
Author: Arash Esbati <[email protected]>
Commit: Arash Esbati <[email protected]>
; * style/graphics.el ("graphics"): Remove unnecessary `function'.
---
style/graphics.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/style/graphics.el b/style/graphics.el
index 4cdd31c164..d7f2682d97 100644
--- a/style/graphics.el
+++ b/style/graphics.el
@@ -11,10 +11,10 @@
(TeX-load-style "graphicx")
(defvar LaTeX-graphics-package-options LaTeX-graphicx-package-options)
-(TeX-add-style-hook "graphics"
- (function
- (lambda ()
- (TeX-run-style-hooks "graphicx")))
+(TeX-add-style-hook
+ "graphics"
+ (lambda ()
+ (TeX-run-style-hooks "graphicx"))
TeX-dialect)
;;; graphics.el ends here.