~ubuntu-branches/ubuntu/vivid/goby/vivid-proposed

« back to all changes in this revision

Viewing changes to goby.el

  • Committer: Package Import Robot
  • Author(s): Tatsuya Kinoshita
  • Date: 2014-08-24 18:35:36 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20140824183536-4cl2siq8zzmtf342
Tags: 1.1+0.20140625-1
* Imported Upstream version 1.1+0.20140625
* Update 900_changelog.patch
* Update debian/copyright
* Depend on emacsen-common 2.0.8
* Install a compat file with emacsen-compat

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
 
101
101
(defun goby-width-height ()
102
102
  (cond
103
 
   ((eq window-system 'mac)
104
 
    (let* ((fontset (or (cdr (assoc 'font default-frame-alist))
105
 
                        "fontset-default"))
106
 
           (finfo (font-info (fontset-font fontset ?a))))
107
 
      (list (aref finfo 2) (aref finfo 3))))
 
103
   ;; ((eq window-system 'mac)
 
104
   ;;  (let* ((fontset (or (cdr (assoc 'font default-frame-alist))
 
105
   ;;                   "fontset-default"))
 
106
   ;;      (finfo (font-info (fontset-font fontset ?a))))
 
107
   ;;    (list (aref finfo 2) (aref finfo 3))))
108
108
   (t
109
109
    (list (frame-char-width) (frame-char-height)))))
110
110