commit: c8bfb0c6c979522f6b39ad96103ab13cdda63262 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Nov 16 13:09:41 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Nov 16 13:30:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8bfb0c6
app-emacs/ocaml-mode: Use with-eval-after-load in site-init Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-emacs/ocaml-mode/files/50ocaml-mode-gentoo-3.12.1.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo-3.12.1.el b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo-3.12.1.el index bea123308024..bbd5303e89f7 100644 --- a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo-3.12.1.el +++ b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo-3.12.1.el @@ -6,5 +6,5 @@ "Run camldebug on program FILE in buffer *camldebug-FILE*." t) (autoload 'inferior-caml-set-font-lock "caml-font") -(eval-after-load "caml" '(require 'caml-font)) +(with-eval-after-load "caml" (require 'caml-font)) (add-hook 'inferior-caml-mode-hooks 'inferior-caml-set-font-lock)
