comparison lisp/x-win-sun.el @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children 697ef44129c6
comparison
equal deleted inserted replaced
397:f4aeb21a5bad 398:74fd4e045ea6
244 ;;; As far as I know, the `find' key is a Sunism, so we do that binding 244 ;;; As far as I know, the `find' key is a Sunism, so we do that binding
245 ;;; here. This is the only Sun-specific keybinding. (The functions 245 ;;; here. This is the only Sun-specific keybinding. (The functions
246 ;;; themselves are in x-win.el in case someone wants to use them when 246 ;;; themselves are in x-win.el in case someone wants to use them when
247 ;;; not running on a Sun display.) 247 ;;; not running on a Sun display.)
248 248
249 (define-key global-map 'find 'ow-find) 249 (or (lookup-key global-map 'find)
250 (define-key global-map '(shift find) 'ow-find-backward) 250 (define-key global-map 'find 'ow-find))
251 (or (lookup-key global-map '(shift find))
252 (define-key global-map '(shift find) 'ow-find-backward))
251 253
252 ) 254 )
253 255
254 ;;; x-win-sun.el ends here 256 ;;; x-win-sun.el ends here