emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] scratch/editorconfig-cc 907a4afa7a 143/351: Set `fill-column` d


From: Stefan Monnier
Subject: [nongnu] scratch/editorconfig-cc 907a4afa7a 143/351: Set `fill-column` directly
Date: Thu, 13 Jun 2024 18:38:48 -0400 (EDT)

branch: scratch/editorconfig-cc
commit 907a4afa7a114ba9aebd65df8d58792b8a4068dc
Author: Simen Heggestøyl <simen@e5r.no>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    Set `fill-column` directly
    
    Set `fill-column` directly instead of using `set-fill-column`. That
    function is useful when used interactively, but when called from Lisp
    it’s almost equivalent to just setting `fill-column` directly, and it
    avoids showing the “Fill column set to…” message.
---
 editorconfig.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/editorconfig.el b/editorconfig.el
index 4886a4c76a..de31620810 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -277,7 +277,7 @@ current buffer yet.")
   "Set the max line length (`fill-column') to LENGTH."
   (when (and (editorconfig-string-integer-p length)
              (> (string-to-number length) 0))
-    (set-fill-column (string-to-number length))))
+    (setq fill-column (string-to-number length))))
 
 (defun editorconfig-call-editorconfig-exec ()
   )



reply via email to

[Prev in Thread] Current Thread [Next in Thread]