[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/extmap 09a8b1b97a 18/39: Remove pointless noise from `extm
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/extmap 09a8b1b97a 18/39: Remove pointless noise from `extmap--do-create' on Emacs 24. |
Date: |
Fri, 31 Jan 2025 07:00:42 -0500 (EST) |
branch: elpa/extmap
commit 09a8b1b97aac94db86a3a547852c5b80efa0c00d
Author: Paul Pogonyshev <pogonyshev@gmail.com>
Commit: Paul Pogonyshev <pogonyshev@gmail.com>
Remove pointless noise from `extmap--do-create' on Emacs 24.
---
extmap.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/extmap.el b/extmap.el
index 5780454c8a..07bc93b701 100644
--- a/extmap.el
+++ b/extmap.el
@@ -384,7 +384,7 @@ Only available on Emacs 25, as this requires `generator'
package."
(used-keys (make-hash-table :test #'eq)))
;; Will be replaced at the end.
(insert (bindat-pack extmap--header-bindat-spec nil))
- (write-region (point-min) (point-max) filename nil nil nil (if
(plist-get options :overwrite) nil 'excl))
+ (write-region nil nil filename nil 'no-message nil (if (plist-get
options :overwrite) nil 'excl))
(erase-buffer)
(catch 'end-of-data
(while t
@@ -424,20 +424,20 @@ Only available on Emacs 25, as this requires `generator'
package."
(insert (bindat-pack
extmap--item-short-bindat-spec `((type . 4) (length . ,(length encoded))))
encoded))))
(t
- (write-region (point-min) (point-max) filename t)
+ (write-region nil nil filename t 'no-message)
(with-current-buffer buffer
(insert (bindat-pack extmap--item-bindat-spec
`((type . ,(if (extmap--plain-string-p value) 2 3)) (length . ,num-bytes)
(offset . ,offset))))
(setq offset (+ offset num-bytes))
(when shared-values
(puthash value key shared-values)))))))))))
- (write-region (point-min) (point-max) filename t)
+ (write-region nil nil filename t 'no-message)
;; Update the header.
(erase-buffer)
(insert (bindat-pack extmap--header-bindat-spec `((magic . #x91f7)
(version . 1)
(num-items .
,(hash-table-count used-keys))
(offset .
,offset))))
- (write-region (point-min) (point-max) filename 0))))
+ (write-region nil nil filename 0 'no-message))))
(defun extmap--plain-string-p (object)
(and (stringp object)
- [nongnu] elpa/extmap 02f1dfeab1 36/39: Make `extmap-init' lazy by default in that it won't even preload extmap metadata., (continued)
- [nongnu] elpa/extmap 02f1dfeab1 36/39: Make `extmap-init' lazy by default in that it won't even preload extmap metadata., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 52001e5d69 32/39: Use Eldev to check if copyright notices are up-to-date during CI., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 83010736da 25/39: Fix a bug in `extmap--equal-including-properties': comparing certain unequal hash-tables would see no difference between them., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap eabe5f6f26 03/39: Implement auto-reloading maps, largely to simplify development for users of the package., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 2dae499f5b 04/39: Make `extmap-statistics' also return values of options passed to `extmap-init'., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 352eca4463 08/39: Fix text properties being stripped from strings in the database., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 83d5c74adc 13/39: Implement `:compress-values' flag; this doesn't affect database structure., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap b65739a1fd 23/39: Release version 1.2., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 235a9831ea 07/39: Improve package commentary., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 634351236b 15/39: Use Eldev., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 09a8b1b97a 18/39: Remove pointless noise from `extmap--do-create' on Emacs 24.,
ELPA Syncer <=
- [nongnu] elpa/extmap 96a3aabd27 02/39: Avoid functions added to `subr' only recently., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap f4c5494977 11/39: Use `evm' for Travis CI testing instead of hunting for PPAs., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 341e3e16e2 20/39: Release version 1.1.1., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap a2096d357b 16/39: Use GitHub workflows for continuous integration instead of Travis CI., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 6cca3abb47 29/39: Enable Dependabot., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap eca2915534 33/39: Retroactively update copyright notices based on Git history., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 187f621cb2 17/39: Replace the badge in `README.md' accordingly., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 5875a4ab27 26/39: Release version 1.2.1., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 3b0f898057 39/39: Post-release version bump., ELPA Syncer, 2025/01/31
- [nongnu] elpa/extmap 48e57b0fb4 37/39: Update file `Eldev' to enable automated releasing., ELPA Syncer, 2025/01/31