From 425f6a12641ae653a9c419be1df80b00b5e36ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ellis=20Keny=C5=91?= Date: Mon, 2 Aug 2021 08:55:13 +0100 Subject: [PATCH] fix(mu4e): remove autoload cookie Autoload cookie was not working as expected Close #5331 --- modules/email/mu4e/autoload/mu-lock.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/email/mu4e/autoload/mu-lock.el b/modules/email/mu4e/autoload/mu-lock.el index 118b7d785..7a0e6375b 100644 --- a/modules/email/mu4e/autoload/mu-lock.el +++ b/modules/email/mu4e/autoload/mu-lock.el @@ -1,6 +1,6 @@ ;;; email/mu4e/autoload/mu-lock.el -*- lexical-binding: t; -*- -;;;###autoload (autoload 'file-notify-rm-watch "filenotify") -;;;###autoload (autoload 'file-notify-add-watch "filenotify") +(autoload 'file-notify-rm-watch "filenotify") +(autoload 'file-notify-add-watch "filenotify") (defvar +mu4e-lock-file (expand-file-name "mu4e_lock" temporary-file-directory) "Location of the lock file which stores the PID of the process currenty running mu4e")