首页 > 系统服务 > 详细

在当前shell下运行emacs 出现 fontset 'tty' does not exist.

时间:2015-04-28 22:41:00      阅读:1426      评论:0      收藏:0      [点我收藏+]

在终端下执行以下命令进入,shell模式的 emacs,出现如下错误

$ emacs -nw

error: Fontset `tty‘ does not exist

 

解决办法:

修改.emacs 中关于字体的设置。

(defun s-font()
  (interactive)
  ;; font config for org table showing.
  (set-default-font "monospace-11")
  (dolist (charset (kana han symbol cjk-misc bopomofo))
    (set-fontset-font (frame-parameter nil font)
                      charset
                      (font-spec :family "WenQuanYi Micro Hei")))
  ;; tune rescale so that Chinese character width = 2 * English character width
  (setq face-font-rescale-alist (("monospace" . 1.0) ("WenQuanYi" . 1.23))))

(add-to-list after-make-frame-functions
             (lambda (new-frame)
               (select-frame new-frame)
               (if window-system
                   (s-font))))
(if window-system
    (s-font))

 

在当前shell下运行emacs 出现 fontset 'tty' does not exist.

原文:http://www.cnblogs.com/aqing1987/p/4464106.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!