all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Shigeru Fukaya <shigeru.fukaya@gmail.com>
To: 17813@debbugs.gnu.org
Subject: bug#17813: 24.3.91; bad linum display with `text-scale-adjust'
Date: Fri, 20 Jun 2014 02:25:28 +0900	[thread overview]
Message-ID: <37CF8BE3769E04shigeru.fukaya@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 480 bytes --]


Font size of line numbers by `linum-mode' follow `text-scale-adjust', though
the size of left margin doesn't change.
(nlinum also has the same problem)

The possible solutions are,


(1) To change the width of left margin for line numbers.

[attached patch]


(2) To fix the font size of line numbers.

(set-face-attribute 'linum nil :height (face-attribute 'linum :height nil t))


Solution (2) may need more in case of multi frames with different font size.


Regards,
Shigeru

[-- Attachment #2: linum.diff --]
[-- Type: application/octet-stream, Size: 583 bytes --]

--- orig/linum.el	2014-03-21 14:34:40.000000000 +0900
+++ ./linum.el	2014-06-20 02:13:55.023933400 +0900
@@ -178,6 +178,10 @@ Linum mode is a buffer-local minor mode.
       (let ((inhibit-point-motion-hooks t))
         (forward-line))
       (setq line (1+ line)))
+    (when (and face-remapping-alist (bound-and-true-p linum-mode))
+      (let ((h (cadr (assq :height (assq 'default face-remapping-alist)))))
+	(when (numberp h)
+	  (setq width (ceiling (* width h))))))
     (set-window-margins win width (cdr (window-margins win)))))
 
 (defun linum-after-change (beg end _len)

             reply	other threads:[~2014-06-19 17:25 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-19 17:25 Shigeru Fukaya [this message]
2014-06-19 18:46 ` bug#17813: 24.3.91; bad linum display with `text-scale-adjust' Stefan Monnier
2014-06-20  9:30   ` Eli Zaretskii
2014-06-20 13:35     ` Stefan Monnier
2014-06-20 14:27       ` Eli Zaretskii
2014-06-20 15:35         ` Stefan Monnier
2014-07-08 19:33 ` Stefan Monnier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=37CF8BE3769E04shigeru.fukaya@gmail.com \
    --to=shigeru.fukaya@gmail.com \
    --cc=17813@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.