aboutsummaryrefslogtreecommitdiffhomepage
path: root/images
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-23 14:26:21 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-23 14:26:21 +0000
commit4905f4712b7e272b4d6eae3f703abee06745daa7 (patch)
tree3e07c432b14422139a0cd8d0bffb80d2a04eafa3 /images
parent65e8ad32780ff96683e578021bd08b03c3d4024a (diff)
Remove obsolete xbms
Diffstat (limited to 'images')
-rw-r--r--images/gimp/scripts/proofgeneral.scm11
1 files changed, 1 insertions, 10 deletions
diff --git a/images/gimp/scripts/proofgeneral.scm b/images/gimp/scripts/proofgeneral.scm
index 369b6ca5..68c3921b 100644
--- a/images/gimp/scripts/proofgeneral.scm
+++ b/images/gimp/scripts/proofgeneral.scm
@@ -16,8 +16,7 @@
(let* ((filename (string-append buttonname ".xcf"))
(image (car (gimp-file-load 1 filename filename)))
(xpmname (string-append buttonname ".xpm"))
- (poor-xpm (string-append buttonname ".8bit.xpm"))
- (xbmname (string-append buttonname ".xbm")))
+ (poor-xpm (string-append buttonname ".8bit.xpm")))
(gimp-image-flatten image)
;; Full xpm
(gimp-file-save 1 image (car (gimp-image-active-drawable image))
@@ -26,14 +25,6 @@
(gimp-convert-indexed image 1 0 8 1 1 "blah")
(gimp-file-save 1 image (car (gimp-image-active-drawable image))
poor-xpm poor-xpm)
- ;; Mono image
- (gimp-convert-rgb image)
- (gimp-image-flatten image)
- (gimp-convert-indexed image 1 1 3 2 1 "blah")
- (file-xbm-save 1 image (car (gimp-image-active-drawable image))
- xbmname xbmname
- "Proof General button"
- FALSE 0 0 "")
;; Finish
(gimp-image-delete image)
))