aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2007-09-13 14:09:42 +0000
committerThien-Thi Nguyen2007-09-13 14:09:42 +0000
commit45169e8d47c86118bb09dc734f9861d94d590da7 (patch)
tree521c109e9cc963ce3ecf43e4ff7562eb1987cff3
parent6b22680006a05e33fdf3b6e367987bf88c0276d4 (diff)
downloademacs-45169e8d47c86118bb09dc734f9861d94d590da7.tar.gz
emacs-45169e8d47c86118bb09dc734f9861d94d590da7.zip
(bubbles--initialize-images): Fix bug:
Use transparent background for empty cells in graphics mode.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/play/bubbles.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 477723cdb1a..797aa8c1169 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change)
2
3 * play/bubbles.el (bubbles--initialize-images): Fix bug:
4 Use transparent background for empty cells in graphics mode.
5
12007-09-13 Jari Aalto <jari.aalto@cante.net> 62007-09-13 Jari Aalto <jari.aalto@cante.net>
2 7
3 * man.el (Man-default-man-entry): At end of line, continue looking 8 * man.el (Man-default-man-entry): At end of line, continue looking
diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el
index 133c6efc0d2..00cb6e04397 100644
--- a/lisp/play/bubbles.el
+++ b/lisp/play/bubbles.el
@@ -1323,7 +1323,7 @@ Return t if new char is non-empty."
1323 (setq bubbles--empty-image 1323 (setq bubbles--empty-image
1324 (create-image (replace-regexp-in-string 1324 (create-image (replace-regexp-in-string
1325 "^\"\\(.*\\)\t.*c .*\",$" 1325 "^\"\\(.*\\)\t.*c .*\",$"
1326 "\"\\1\tc #FFFFFF\"," template) 1326 "\"\\1\tc None\"," template)
1327 'xpm t 1327 'xpm t
1328 ;;:mask 'heuristic 1328 ;;:mask 'heuristic
1329 :margin '(2 . 1))) 1329 :margin '(2 . 1)))