[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/webpaste 124ef8b 119/298: Drop usage of concat when return
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/webpaste 124ef8b 119/298: Drop usage of concat when returning link to users message field |
Date: |
Thu, 9 Dec 2021 18:59:57 -0500 (EST) |
branch: elpa/webpaste
commit 124ef8b0ef662126696c22fb5e0abca32ec79ebe
Author: Elis Axelsson <elis.axelsson@gmail.com>
Commit: Elis Axelsson <elis.axelsson@gmail.com>
Drop usage of concat when returning link to users message field
---
test/webpaste-test.el | 2 +-
webpaste.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/webpaste-test.el b/test/webpaste-test.el
index 70005dc..2b98880 100644
--- a/test/webpaste-test.el
+++ b/test/webpaste-test.el
@@ -54,7 +54,7 @@
;; Test to return a link and check that the message logged is the expected
one
(should (equal
(webpaste-return-url "https://example.com/";)
- "Added https://example.com/ to kill ring."))
+ "Added \"https://example.com/\"; to kill ring."))
;; Check so the kill ring contain the correct contents
(should (equal (car kill-ring) "https://example.com/";)))
diff --git a/webpaste.el b/webpaste.el
index dee8844..3304c31 100644
--- a/webpaste.el
+++ b/webpaste.el
@@ -203,7 +203,7 @@ return it to the user."
(kill-new returned-url)
;; Notify user
- (message (concat "Added " returned-url " to kill ring.")))
+ (message "Added %S to kill ring." returned-url))
- [nongnu] elpa/webpaste 87cee69 081/298: Added test for failover to the second provider and not random, (continued)
- [nongnu] elpa/webpaste 87cee69 081/298: Added test for failover to the second provider and not random, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste dcc26da 084/298: Update melpa image links, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 6655ecc 085/298: Rename make compile to make build because it's easier to remember, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 346b5bc 087/298: Rename tests to be prefixed, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 3389b4a 089/298: Do not provide test-helper feature, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 7db5673 093/298: Added more emacs versions for tests, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 382e01d 105/298: Added page breaks to files, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste b7acc4e 100/298: Added test for returning of URL's, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 8027e6e 106/298: Run tests on emacs 25.2 since it's been released, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste e04d885 114/298: Add (prog1 nil ...) form to avoid having the nil hanging at the end, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 124ef8b 119/298: Drop usage of concat when returning link to users message field,
ELPA Syncer <=
- [nongnu] elpa/webpaste 69166a3 121/298: Moved error-handling of failed requests out so providers must specify it, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 69f9452 122/298: Bump version for minor release, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 8905a52 125/298: Re-arrange arguments to webpaste-provider and update docs, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 72ba31e 127/298: Bump version for new release, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 7d03ed3 137/298: Removed unused variables defined in function declaration, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 07a85e9 142/298: Added pre-calculated alist of languages for providers, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 7b84568 155/298: Avoid setq's in favor of let, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 0c0e88a 079/298: Added basic structure of tests file, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 95289e5 082/298: Added .travis.yml config file, ELPA Syncer, 2021/12/09
- [nongnu] elpa/webpaste 7c90bc5 090/298: Merge branch 'tarsius-master', ELPA Syncer, 2021/12/09