Jesse W | 31 Jan 23:45

Patch for Mac systems

I am trying to hack Emacs/W3 into running shape on Mac OS X(with the 
Carbon port of Emacs).  I finally tracked down the first error I got, 
which apparently was caused by the lack of a line regarding mac in a 
font mapping.  It's nearly a one line patch.  Assuming it is good, how 
would I go about getting it accepted?

Thanks for all the work,
	Jesse Weinstein

Here's the context diff:

*** /usr/share/emacs/site-lisp/font.el	Sat Jan 31 14:46:45 2004
--- ./lisp/font.el	Tue Oct 22 20:33:41 2002
***************
*** 80,88 ****
       (win32    . (x-font-create-name x-font-create-object))
       (w32      . (x-font-create-name x-font-create-object))
       (pm       . (x-font-create-name x-font-create-object)) ; Change? 
FIXME
!     (tty      . (tty-font-create-plist tty-font-create-object))
!     (mac      . (x-font-create-name x-font-create-object)))
!
     "Alist mapping device types to functions.
   The functions are used to create a font name from a font structure.")

--- 80,86 ----
       (win32    . (x-font-create-name x-font-create-object))
       (w32      . (x-font-create-name x-font-create-object))
       (pm       . (x-font-create-name x-font-create-object)) ; Change? 
FIXME
!     (tty      . (tty-font-create-plist tty-font-create-object)))
     "Alist mapping device types to functions.
   The functions are used to create a font name from a font structure.")

Gmane