annotate lisp/raw-process.el @ 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 308d34e9f07d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
1 ;;; raw-process.el --- In a raw temacs, load stuff so processes work
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
2
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
3 ;; Copyright (C) 2002 Ben Wing.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
4
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
5 ;; Author: Ben Wing
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
6 ;; Maintainer: XEmacs Development Team
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
7 ;; Keywords: internal
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
8
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
9 ;; This file is part of XEmacs.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
10
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
11 ;; XEmacs is free software: you can redistribute it and/or modify it
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
12 ;; under the terms of the GNU General Public License as published by the
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
13 ;; Free Software Foundation, either version 3 of the License, or (at your
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
14 ;; option) any later version.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
15
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
17 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
18 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
19 ;; for more details.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
20
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
5402
308d34e9f07d Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents: 1262
diff changeset
22 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>.
1262
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
23
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
24 ;;; Synched up with: Not in FSF
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
25
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
26 ;;; Commentary:
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
27
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
28 ;; This is a front-end to the make-docfile program that gathers up all the
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
29 ;; lisp files that will be dumped with XEmacs. It would probably be best
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
30 ;; to just move make-docfile.c completely to lisp and be done with it.
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
31
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
32 (require 'custom)
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
33 (load "process")
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
34 ;; need for stuff called from C by process code
807c72f959fe [xemacs-hg @ 2003-02-06 10:44:06 by ben]
ben
parents:
diff changeset
35 (if (featurep 'windows-nt) (load "win32-native"))