[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/so-long-updates caa1630 2/6: ; * lisp/so-long.el: Use function q
From: |
Phil |
Subject: |
scratch/so-long-updates caa1630 2/6: ; * lisp/so-long.el: Use function quoting in example configuration |
Date: |
Sat, 16 Nov 2019 20:40:58 -0500 (EST) |
branch: scratch/so-long-updates
commit caa1630b2c008fa9584812d27ffc56a48f7d2d19
Author: Stefan Monnier <address@hidden>
Commit: Phil Sainty <address@hidden>
; * lisp/so-long.el: Use function quoting in example configuration
---
lisp/so-long.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisp/so-long.el b/lisp/so-long.el
index f696e06..208bdf4 100644
--- a/lisp/so-long.el
+++ b/lisp/so-long.el
@@ -272,13 +272,13 @@
;; (setq so-long-threshold 1000)
;; (setq so-long-max-lines 100)
;; ;; Additional target major modes to trigger for.
-;; (mapc (apply-partially 'add-to-list 'so-long-target-modes)
+;; (mapc (apply-partially #'add-to-list 'so-long-target-modes)
;; '(sgml-mode nxml-mode))
;; ;; Additional buffer-local minor modes to disable.
-;; (mapc (apply-partially 'add-to-list 'so-long-minor-modes)
+;; (mapc (apply-partially #'add-to-list 'so-long-minor-modes)
;; '(diff-hl-mode diff-hl-amend-mode diff-hl-flydiff-mode))
;; ;; Additional variables to override.
-;; (mapc (apply-partially 'add-to-list 'so-long-variable-overrides)
+;; (mapc (apply-partially #'add-to-list 'so-long-variable-overrides)
;; '((show-trailing-whitespace . nil)
;; (truncate-lines . nil))))
- branch scratch/so-long-updates created (now ca84ddd), Phil, 2019/11/16
- scratch/so-long-updates 690d065 3/6: ; * lisp/so-long.el: Use declare-function nearer the code that needs it, Phil, 2019/11/16
- scratch/so-long-updates d985eba 1/6: ; * lisp/so-long.el: Delete redundant :group declarations, Phil, 2019/11/16
- scratch/so-long-updates 95b499d 4/6: * lisp/so-long.el: Use (interactive "@") for menu commands, Phil, 2019/11/16
- scratch/so-long-updates caa1630 2/6: ; * lisp/so-long.el: Use function quoting in example configuration,
Phil <=
- scratch/so-long-updates bcf697b 5/6: * lisp/so-long.el (so-long): Firstly revert the existing action, if any, Phil, 2019/11/16
- scratch/so-long-updates ca84ddd 6/6: * lisp/so-long.el (so-long-menu): Refactor action commands, Phil, 2019/11/16