From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Ax Subject: custom ellipsis is underlined after package-initialize Date: Tue, 27 Jun 2017 01:37:13 +0200 Message-ID: <508ab81b-5129-c327-e6ca-a556c37e2668@gMail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="------------061D9D0BE81779B8ECDF17D8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46332) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dPdZV-0002C5-8u for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 19:37:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dPdZQ-0006a8-Bc for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 19:37:33 -0400 Received: from mail-wm0-x22b.google.com ([2a00:1450:400c:c09::22b]:38388) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dPdZQ-0006Zh-3i for emacs-orgmode@gnu.org; Mon, 26 Jun 2017 19:37:28 -0400 Received: by mail-wm0-x22b.google.com with SMTP id b184so11168729wme.1 for ; Mon, 26 Jun 2017 16:37:27 -0700 (PDT) Received: from [10.11.12.10] (ip5f5b275f.dynamic.kabel-deutschland.de. [95.91.39.95]) by smtp.googlemail.com with ESMTPSA id i2sm677266eda.55.2017.06.26.16.37.24 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 26 Jun 2017 16:37:24 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org This is a multi-part message in MIME format. --------------061D9D0BE81779B8ECDF17D8 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Here's the smallest example I could come up with for a rendering problem i don't know how to debug: using tmp.org= * asd ** def and tmp.el= (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (package-initialize) (setq package-enable-at-startup nil) (setq org-ellipsis "…") (find-file "tmp.org") then starting from the shell: emacs -Q --debug-init --load tmp.el tmp.org tmp.el i get a nicely split frame with an org buffer that has an underlined ellipsis. removing package-initialize from tmp.el and starting again fixes this. am wondering how to debug or better define the issue. m --------------061D9D0BE81779B8ECDF17D8 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 8bit

Here's the smallest example I could come up with for a rendering problem i don't know how to debug:

using tmp.org=

* asd
** def

and tmp.el=

(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(package-initialize)
(setq package-enable-at-startup nil)
(setq org-ellipsis "…")
(find-file "tmp.org")

then starting from the shell:

emacs -Q --debug-init --load tmp.el tmp.org tmp.el

i get a nicely split frame with an org buffer that has an underlined ellipsis.
removing package-initialize from tmp.el and starting again fixes this.
am wondering how to debug or better define the issue.

m





--------------061D9D0BE81779B8ECDF17D8--