[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 9249cda2ff 11/16: let bind a setq'd var to keep c
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 9249cda2ff 11/16: let bind a setq'd var to keep compiler happy |
Date: |
Wed, 27 Mar 2024 10:00:31 -0400 (EDT) |
branch: elpa/mastodon
commit 9249cda2fffca34223d6d6c485878c3a1b32766d
Author: marty hiatt <martianhiatus@riseup.net>
Commit: marty hiatt <martianhiatus@riseup.net>
let bind a setq'd var to keep compiler happy
---
lisp/mastodon-notifications.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el
index f7276d6c2c..0e367c9859 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -177,10 +177,11 @@ Status notifications are given when
(switch-to-buffer (current-buffer))
(insert str)
(goto-char (point-min))
- (while (setq prop (text-property-search-forward 'face 'shr-text t))
- (add-text-properties (prop-match-beginning prop)
- (prop-match-end prop)
- '(face (font-lock-comment-face shr-text))))
+ (let (prop)
+ (while (setq prop (text-property-search-forward 'face 'shr-text t))
+ (add-text-properties (prop-match-beginning prop)
+ (prop-match-end prop)
+ '(face (font-lock-comment-face shr-text)))))
(buffer-string)))
(defun mastodon-notifications--format-note (note type)
- [nongnu] elpa/mastodon updated (90aeac6080 -> d54aa9aa3e), ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 1454c2253d 15/16: docstrings - reduce explicit refs to Mastodon itself., ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 79a3f3534b 05/16: process-full-sized-image-response - inhibit read only, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon a55db10550 10/16: reply when replying: prompt to either nuke existing or abort, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 4e19f18a1a 03/16: apply not cl-reduce to find longest item for padding, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon d54aa9aa3e 16/16: Merge branch 'develop', ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 71b92fdd9c 07/16: media: call image-transform-fit-both in masto-image buf, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 3711c59984 09/16: toot-compose: only call mode funs if not buffer-exists, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 3c1d3150e1 12/16: PUT attachment alt-text in media upload callback. (pleroma), ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 9249cda2ff 11/16: let bind a setq'd var to keep compiler happy,
ELPA Syncer <=
- [nongnu] elpa/mastodon 21d8771fea 01/16: cmd index, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 7384db8e3a 06/16: process-full-sized-image-response - credit rahguzar, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 6935c92902 02/16: scale full size image to window-width. FIX #542., ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 7df610ba70 14/16: condition case for lingva translations, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 7d0a20ac0c 04/16: media: rewrite process-full-sized-image-response, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 93452494d1 13/16: condition-case for mpv-start, ELPA Syncer, 2024/03/27
- [nongnu] elpa/mastodon 59f5f9ff99 08/16: add masto-image to get-buffer-type, ELPA Syncer, 2024/03/27