* Richard Klinda <ignotus@xxxxxxxxxxx> writes:
> Hello,
> I found a little bug in the function XWEM-CL-MATCH-P (xwem-manage.el);
> the "buffer-filename" type is handled by the following code:
> ,----[ 320. line ]-
> | ((eq type 'buffer-filename)
> | (string-match param (buffer-file-name))))))))
> `----
> If a buffer doesn't have a filename (like *scratch* etc) then it signals
> an error, so please change that to:
> ,----
> | ((eq type 'buffer-filename)
> | (and (buffer-file-name)
> | (string-match param (buffer-file-name)))))))))
> `----
In CVS now. Thanks, Richard!
Richard, for future changes, could you please send them in unified
diff form (diff -u oldfile newfile > patch.diff). And also include
a ChangeLog addition.
Thanks man!
> Ps: Lg, JackalX, you haven't been to IRC today, what's going on? :)
Occasionally I catch up on my sleep. Every now and then my body says
"no way, buddy, you're sleeping" and I'll crash around about dinner
time and sleep through to morning. :-)
Also, occasionally I intentionally keep away from IRC so I can get
some hacking done.
--
|---<Steve Youngs>---------------<GnuPG KeyID: A94B3003>---|
| In space, |
| No one can hear you rip a stinky |
|---------------------------------------<steve@xxxxxxxx>---|
pgp5RGISpCZ6q.pgp
Description: PGP signature
|