[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/lentic cf5f4a3b72 046/333: pabbrev handling was broken.
From: |
ELPA Syncer |
Subject: |
[elpa] externals/lentic cf5f4a3b72 046/333: pabbrev handling was broken. |
Date: |
Tue, 27 Feb 2024 12:59:59 -0500 (EST) |
branch: externals/lentic
commit cf5f4a3b725cc8ff1e591ef4541c86e480f437cf
Author: Phillip Lord <phillip.lord@newcastle.ac.uk>
Commit: Phillip Lord <phillip.lord@newcastle.ac.uk>
pabbrev handling was broken.
A function checking for pabbrev-expansion was returning
nil when pabbrev was not loaded. This was causing very odd
errors for me as I load pabbrev lazily. Now returns nil if
pabbrev-expansion is not present.
---
linked-buffer-block.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/linked-buffer-block.el b/linked-buffer-block.el
index d86705d7d1..61e530f812 100644
--- a/linked-buffer-block.el
+++ b/linked-buffer-block.el
@@ -161,11 +161,11 @@ implicit start and END an implicit stop."
"Returns the length of any text that pabbrev has currently added to the
buffer."
;; this *exact* form suppresses byte compiler warnings.
;; when or if and does not!
- (if (boundp 'pabbrev-expansion)
- (if pabbrev-expansion
- ;; pabbrev sorts the expansion but also adds "[]" either side"
- (+ 2 (length pabbrev-expansion))
- 0)))
+ (if (and (boundp 'pabbrev-expansion)
+ pabbrev-expansion)
+ ;; pabbrev sorts the expansion but also adds "[]" either side"
+ (+ 2 (length pabbrev-expansion))
+ 0))
(defmethod linked-buffer-convert ((conf linked-buffer-block-configuration)
location)
- [elpa] externals/lentic a69e98a8c5 025/333: No longer needed., (continued)
- [elpa] externals/lentic a69e98a8c5 025/333: No longer needed., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 2a1f8bb5f5 026/333: Merge branch 'master' of github.com:phillord/linked-buffer, ELPA Syncer, 2024/02/27
- [elpa] externals/lentic fe3efb4ef6 040/333: evm/cask install, ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 3528da0a11 032/333: linked-buffer-asciidoc support., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 45d07d6416 034/333: Documentation cleanup., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 3405c13254 033/333: Change fundamental-mode to normal-mode, ELPA Syncer, 2024/02/27
- [elpa] externals/lentic de2450d3e4 043/333: Removed condition-case-no-debug, ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 049330626e 044/333: Version number changes., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 661cb19252 028/333: Changes to test setup., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic e7f4d91f88 047/333: Support file-locals in linked-buffer., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic cf5f4a3b72 046/333: pabbrev handling was broken.,
ELPA Syncer <=
- [elpa] externals/lentic 1a181b7502 054/333: m-buffer not need in cask, as declared in headers., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 9194eac956 049/333: Linked-buffer minor mode added., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 96466482ca 052/333: Cosmetic and documentation changes., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 1bf2b709e0 063/333: Use three arguments for m-buffer-replace-match, ELPA Syncer, 2024/02/27
- [elpa] externals/lentic b6b9293635 061/333: Added file local functions., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic bbc60fc6d4 056/333: Support el-to-org., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic a2d2e6dfcd 065/333: Literate documentation for linked-buffer-org., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic cd2ee3b53c 068/333: Point syncing is now an option., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic fead80b26a 078/333: First nearly working version., ELPA Syncer, 2024/02/27
- [elpa] externals/lentic 9913c47912 081/333: Convert start point before changes., ELPA Syncer, 2024/02/27