emacs.pkgs.ement: unstable-2021-09-08 -> unstable-2021-09-16
This commit is contained in:
parent
9c45d3fa44
commit
b4b8a83dfc
2 changed files with 39 additions and 7 deletions
|
@ -9,7 +9,14 @@
|
||||||
|
|
||||||
trivialBuild {
|
trivialBuild {
|
||||||
pname = "ement";
|
pname = "ement";
|
||||||
version = "unstable-2021-09-08";
|
version = "unstable-2021-09-16";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alphapapa";
|
||||||
|
repo = "ement.el";
|
||||||
|
rev = "c07e914f077199c95b0e7941a421675c95d4687e";
|
||||||
|
sha256 = "sha256-kYVb2NrHYC87mY/hFUMAjb4TLJ9A2L2RrHoiAXvRaGg=";
|
||||||
|
};
|
||||||
|
|
||||||
packageRequires = [
|
packageRequires = [
|
||||||
plz
|
plz
|
||||||
|
@ -17,12 +24,9 @@ trivialBuild {
|
||||||
ts
|
ts
|
||||||
];
|
];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
patches = [
|
||||||
owner = "alphapapa";
|
./handle-nil-images.patch
|
||||||
repo = "ement.el";
|
];
|
||||||
rev = "468aa9b0526aaa054f059c63797aa3d9ea13611d";
|
|
||||||
sha256 = "sha256-0FCAu253iTSf9qcsmoJxKlzfd5eYc8eJXUxG6+0eg/I=";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Ement.el is a Matrix client for Emacs";
|
description = "Ement.el is a Matrix client for Emacs";
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
diff --git a/ement.el b/ement.el
|
||||||
|
index c9596a7..1b33045 100644
|
||||||
|
--- a/ement.el
|
||||||
|
+++ b/ement.el
|
||||||
|
@@ -682,14 +682,15 @@ can cause undesirable underlining."
|
||||||
|
"Return a copy of IMAGE set to MAX-WIDTH and MAX-HEIGHT.
|
||||||
|
IMAGE should be one as created by, e.g. `create-image'."
|
||||||
|
;; It would be nice if the image library had some simple functions to do this sort of thing.
|
||||||
|
- (let ((new-image (cl-copy-list image)))
|
||||||
|
- (when (fboundp 'imagemagick-types)
|
||||||
|
- ;; Only do this when ImageMagick is supported.
|
||||||
|
- ;; FIXME: When requiring Emacs 27+, remove this (I guess?).
|
||||||
|
- (setf (image-property new-image :type) 'imagemagick))
|
||||||
|
- (setf (image-property new-image :max-width) max-width
|
||||||
|
- (image-property new-image :max-height) max-height)
|
||||||
|
- new-image))
|
||||||
|
+ (when image
|
||||||
|
+ (let ((new-image (cl-copy-list image)))
|
||||||
|
+ (when (fboundp 'imagemagick-types)
|
||||||
|
+ ;; Only do this when ImageMagick is supported.
|
||||||
|
+ ;; FIXME: When requiring Emacs 27+, remove this (I guess?).
|
||||||
|
+ (setf (image-property new-image :type) 'imagemagick))
|
||||||
|
+ (setf (image-property new-image :max-width) max-width
|
||||||
|
+ (image-property new-image :max-height) max-height)
|
||||||
|
+ new-image)))
|
||||||
|
|
||||||
|
;;;;; Reading/writing sessions
|
||||||
|
|
Loading…
Reference in a new issue