comparison lisp/msw-glyphs.el @ 278:90d73dddcdc4 r21-0b37

Import from CVS: tag r21-0b37
author cvs
date Mon, 13 Aug 2007 10:31:29 +0200
parents c5d627a313b1
children c42ec1d1cded
comparison
equal deleted inserted replaced
277:cfdf3ff11843 278:90d73dddcdc4
41 'mswindows 41 'mswindows
42 `(("\\.bmp\\'" [bmp :file nil] 2) 42 `(("\\.bmp\\'" [bmp :file nil] 2)
43 ("\\`BM" [bmp :data nil] 2) 43 ("\\`BM" [bmp :data nil] 2)
44 ,@(if (featurep 'xpm) '(("\\.xpm\\'" [xpm :file nil] 2))) 44 ,@(if (featurep 'xpm) '(("\\.xpm\\'" [xpm :file nil] 2)))
45 ,@(if (featurep 'xpm) '(("\\`/\\* XPM \\*/" [xpm :data nil] 2))) 45 ,@(if (featurep 'xpm) '(("\\`/\\* XPM \\*/" [xpm :data nil] 2)))
46 ; ,@(if (featurep 'xface) '(("\\`X-Face:" [xface :data nil] 2))) 46 ,@(if (featurep 'gif) '(("\\.gif\\'" [gif :file nil] 2)
47 ; ,@(if (featurep 'gif) '(("\\.gif\\'" [gif :file nil] 2) 47 ("\\`GIF8[79]" [gif :data nil] 2)))
48 ; ("\\`GIF8[79]" [gif :data nil] 2))) 48 ,@(if (featurep 'jpeg) '(("\\.jpe?g\\'" [jpeg :file nil] 2)))
49 ; ,@(if (featurep 'jpeg) '(("\\.jpe?g\\'" [jpeg :file nil] 2))) 49 ;; all of the JFIF-format JPEG's that I've seen begin with
50 ; ;; all of the JFIF-format JPEG's that I've seen begin with 50 ;; the following. I have no idea if this is standard.
51 ; ;; the following. I have no idea if this is standard. 51 ,@(if (featurep 'jpeg) '(("\\`\377\330\377\340\000\020JFIF"
52 ; ,@(if (featurep 'jpeg) '(("\\`\377\330\377\340\000\020JFIF" 52 [jpeg :data nil] 2)))
53 ; [jpeg :data nil] 2))) 53 ,@(if (featurep 'png) '(("\\.png\\'" [png :file nil] 2)))
54 ; ,@(if (featurep 'png) '(("\\.png\\'" [png :file nil] 2))) 54 ,@(if (featurep 'png) '(("\\`\211PNG" [png :data nil] 2)))
55 ; ,@(if (featurep 'png) '(("\\`\211PNG" [png :data nil] 2))) 55 ,@(if (featurep 'tiff) '(("\\.tif?f\\'" [tiff :file nil] 2)))
56 ("\\`X-Face:" [string :data "[xface]"]) 56 ("\\`X-Face:" [string :data "[xface]"])
57 ("\\`/\\* XPM \\*/" [string :data "[xpm]"]) 57 ("\\`/\\* XPM \\*/" [string :data "[xpm]"])
58 ("\\`GIF87" [string :data "[gif]"])
59 ("\\`\377\330\340\000\020JFIF" [string :data "[jpeg]"])
60 ("" [string :data nil] 2) 58 ("" [string :data nil] 2)
61 ;; this last one is here for pointers and icons and such -- 59 ;; this last one is here for pointers and icons and such --
62 ;; strings are not allowed so they will be ignored. 60 ;; strings are not allowed so they will be ignored.
63 ("" [nothing]))) 61 ("" [nothing])))
64 62