From 3b0b8c5d0f15554a2fe3877883f0f489ab721442 Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Wed, 26 Jun 2024 11:50:35 +0100 Subject: [PATCH] Quote single quotes in docstrings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silences the following warning in Emacs 29 and newer: ``` ⛔ Warning (comp): smart-tabs-mode.el:265:2: Warning: docstring has wrong usage of unescaped single quotes (use \= or different quoting) ``` --- smart-tabs-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smart-tabs-mode.el b/smart-tabs-mode.el index b9d87d3..9db2404 100644 --- a/smart-tabs-mode.el +++ b/smart-tabs-mode.el @@ -263,7 +263,7 @@ Smarttabs is enabled in mode hook.") (defun smart-tabs-insinuate (&rest languages) "Enable smart-tabs-mode for LANGUAGES. LANGUAGES is a list of SYMBOL or NAME as defined in -'smart-tabs-insinuate-alist' alist or a language using standard named +\\='smart-tabs-insinuate-alist\\=' alist or a language using standard named indent function and indent level. " (mapc (lambda (lang)