XEmacs

XEmacs - check it out

2012-08-24 XEmacs

Setting font in XEmacs under Windows

This is an example on how to set the fonts in XEmacs under Windows.

(when (memq (device-type) '(mswindows))
   (set-face-font 'default "Courier New:Regular:8::")
   (set-face-font 'buffers-tab "Courier New:Bold:8::")
   (set-face-font 'bold "Courier New:Bold:8::")
   (set-face-font 'italic "Courier New:Italic:8::"))

2012-08-21 XEmacs

New build slave added

Since a few days now we have a new build slave for the xemacs buildbot. It is an iMac: "Mac OSX 10.6.8, iMac 3.06 GHz Intel Core i3". Thanks Raymond Toy for providing this resource.

2012-07-13 XEmacs

Problems with openssl missing under cygwin

This is not really an XEmacs thing but hit me when I tried to get gnus working with XEmacs under cygwin. It seems you need to install the openssl development package under cygwin to get the openssl command line tool. That took me some time to figure out.

Connecting to an imap server using the same setup as under Linux produced no error message about the openssl tool missing. I just got an unhelpful connection denied form gnus. That error message fooled me into a bunch of other possible error causes before I understood that it was just that the tool openssl that was missing.