emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/term/mac-win.el [emacs-unicode-2]


From: Steven Tamm
Subject: [Emacs-diffs] Changes to emacs/lisp/term/mac-win.el [emacs-unicode-2]
Date: Wed, 04 Aug 2004 02:08:10 -0400

Index: emacs/lisp/term/mac-win.el
diff -c emacs/lisp/term/mac-win.el:1.22.2.3 emacs/lisp/term/mac-win.el:1.22.2.4
*** emacs/lisp/term/mac-win.el:1.22.2.3 Sun Jul 11 22:07:58 2004
--- emacs/lisp/term/mac-win.el  Wed Aug  4 06:04:04 2004
***************
*** 186,197 ****
  ;; Create a fontset that uses mac-roman font.  With this fontset,
  ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
  ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
  
  (if (fboundp 'new-fontset)
!     (create-fontset-from-fontset-spec
!      "-etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-mac,
! ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman
! mac-roman:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman"))
  
  
  (if (eq system-type 'darwin)
--- 186,212 ----
  ;; Create a fontset that uses mac-roman font.  With this fontset,
  ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
  ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
+ ;; Unnecessary in emacs22
+ 
+ ;; Carbon uses different fonts than commonly found on X, so
+ ;; we define our own standard fontset here.
+ (defvar mac-standard-fontset-spec
+  "-apple-Monaco-normal-r-*-*-12-*-*-*-*-*-fontset-mac"
+  "String of fontset spec of the standard fontset.
+ This defines a fontset consisting of the Monaco variations for
+ European languages which are distributed with Mac OS X.
+ 
+ See the documentation of `create-fontset-from-fontset-spec for the format.")
+ 
  
  (if (fboundp 'new-fontset)
!     (progn
!       (require 'fontset)
!       ;; Setup the default fontset.
!       (setup-default-fontset)
!       ;; Create the standard fontset.
!       (create-fontset-from-fontset-spec mac-standard-fontset-spec t)
!       ))
  
  
  (if (eq system-type 'darwin)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]