2019-06-25 04:03:38 +02:00
|
|
|
|
From 81603e53ebaae0f0b23c4c52c7dab83e808964ec Mon Sep 17 00:00:00 2001
|
2019-03-27 21:41:58 +01:00
|
|
|
|
From: Brian Leung <bkleung89@gmail.com>
|
|
|
|
|
Date: Sun, 17 Mar 2019 01:32:04 +0100
|
|
|
|
|
Subject: [PATCH] This patch silences the byte-compiler.
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
zones.el | 6 +++---
|
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/zones.el b/zones.el
|
2019-06-25 04:03:38 +02:00
|
|
|
|
index ca88d48..594ea36 100644
|
2019-03-27 21:41:58 +01:00
|
|
|
|
--- a/zones.el
|
|
|
|
|
+++ b/zones.el
|
2019-06-25 04:03:38 +02:00
|
|
|
|
@@ -1075,7 +1075,7 @@ You can use `C-x n x' to widen to a previous buffer restriction.
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
This is a destructive operation. The list structure of the variable
|
|
|
|
|
value can be modified."
|
|
|
|
|
- (zz-narrow-advice (interactive-p)))
|
2019-06-25 04:03:38 +02:00
|
|
|
|
+ (zz-narrow-advice (called-interactively-p 'interactive)))
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
(defadvice narrow-to-defun (after zz-add-zone--defun activate)
|
|
|
|
|
"Push the defun limits to the current `zz-izones-var'.
|
2019-06-25 04:03:38 +02:00
|
|
|
|
@@ -1083,7 +1083,7 @@ You can use `C-x n x' to widen to a previous buffer restriction.
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
This is a destructive operation. The list structure of the variable
|
|
|
|
|
value can be modified."
|
|
|
|
|
- (zz-narrow-advice (interactive-p)))
|
2019-06-25 04:03:38 +02:00
|
|
|
|
+ (zz-narrow-advice (called-interactively-p 'interactive)))
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
;; Call `zz-add-zone' if interactive or `zz-add-zone-anyway-p'.
|
|
|
|
|
;;
|
2019-06-25 04:03:38 +02:00
|
|
|
|
@@ -1093,7 +1093,7 @@ You can use `C-x n x' to widen to a previous buffer restriction.
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
This is a destructive operation. The list structure of the variable
|
|
|
|
|
value can be modified."
|
|
|
|
|
- (zz-narrow-advice (interactive-p)))
|
2019-06-25 04:03:38 +02:00
|
|
|
|
+ (zz-narrow-advice (called-interactively-p 'interactive)))
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|
|
|
|
|
;;(@* "General Commands")
|
|
|
|
|
|
|
|
|
|
--
|
2019-06-25 04:03:38 +02:00
|
|
|
|
2.22.0
|
2019-03-27 21:41:58 +01:00
|
|
|
|
|