From: Christoph Göttschkes Date: Wed, 23 Aug 2023 17:34:14 +0000 (+0200) Subject: Fix 'makefile-browser-client' variable initialization X-Git-Tag: emacs-29.1.90~183 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=486045658470db838c58b9755f831d65f8593907;p=emacs.git Fix 'makefile-browser-client' variable initialization * lisp/progmodes/make-mode.el (makefile-browser-client): Initialize to nil. (Bug#65487) Copyright-paperwork-exempt: yes --- diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 087974bd1f0..a1fdfecbec2 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -695,7 +695,7 @@ The function must satisfy this calling convention: "Table of all macro names known for this buffer.") (put 'makefile-macro-table 'risky-local-variable t) -(defvar makefile-browser-client +(defvar makefile-browser-client nil "A buffer in Makefile mode that is currently using the browser.") (defvar makefile-browser-selection-vector nil)