comparison lisp/ChangeLog @ 5639:1d1f385c9149

Call XKeysymToString() much less, it leaks. src/ChangeLog addition: 2012-01-08 Aidan Kehoe <kehoea@parhasard.net> * device-x.c: * device-x.c (syms_of_device_x): Move #'x-keysym-on-keyboard{,-sans-modifiers}-p to Lisp, the hash table no longer stores the X keysyms, so we need to manipulate any strings we have been handed. * event-Xt.c (x_has_keysym): Don't call XKeysymToString() here, it leaks; trust x_keysym_to_emacs_keysym() instead. * event-Xt.c (x_keysym_to_emacs_keysym): No longer leak when looking up the strings for keysyms of the form UABCD. lisp/ChangeLog addition: 2012-01-08 Aidan Kehoe <kehoea@parhasard.net> * x-init.el: * x-init.el (pseudo-canonicalize-keysym): New. * x-init.el: Move #'x-keysym-on-keyboard-sans-modifiers-p, #'x-keysym-on-keyboard-p here from device-x.c, some string manipulation it now needs to do is far easier in Lisp. * x-win-xfree86.el: * x-win-xfree86.el (x-win-init-xfree86): No longer call #'x-keysym-on-keyboard{,-sans-modifiers}-p, implement it ourselves cheaply.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 08 Jan 2012 20:41:37 +0000
parents a366601407c2
children e6b5c49f9e13
comparison
equal deleted inserted replaced
5638:4050bbef9bf6 5639:1d1f385c9149
1 2012-01-08 Aidan Kehoe <kehoea@parhasard.net>
2
3 * x-init.el:
4 * x-init.el (pseudo-canonicalize-keysym): New.
5 * x-init.el: Move #'x-keysym-on-keyboard-sans-modifiers-p,
6 #'x-keysym-on-keyboard-p here from device-x.c, some string
7 manipulation it now needs to do is far easier in Lisp.
8 * x-win-xfree86.el:
9 * x-win-xfree86.el (x-win-init-xfree86):
10 No longer call #'x-keysym-on-keyboard{,-sans-modifiers}-p,
11 implement it ourselves cheaply.
12
1 2012-01-02 Aidan Kehoe <kehoea@parhasard.net> 13 2012-01-02 Aidan Kehoe <kehoea@parhasard.net>
2 14
3 * bytecomp.el (cl-compile-time-init): Add an autoload for this, 15 * bytecomp.el (cl-compile-time-init): Add an autoload for this,
4 some code supplies -no-autoloads when byte-compiling, making it 16 some code supplies -no-autoloads when byte-compiling, making it
5 necessary. 17 necessary.