all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Possible compatibility issue with emacs 25.1 and latest org-mode
@ 2017-02-26  2:20 Tim Cross
  2017-02-27 21:52 ` Tim Cross
  0 siblings, 1 reply; 2+ messages in thread
From: Tim Cross @ 2017-02-26  2:20 UTC (permalink / raw)
  To: Emacs developers

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

This is really just an FYI as I've reported this issue to the org
developers.

Most recent org-plus-contrib package from org generates an org-mode
fontification error when you also use goto-address-prog-mode in a
prog-mode-hook.  Details, with minimal init.el file to reproduce follows

There appers to be a compatibility issue between latest org-mode and
goto-addr.el in emacs 25.1. Specifically, the 'goto-address-prog-mode
funciton. When this function is added to prog-mode-hook, opening an org
file with src blocks results in an org-mode fontification error.

Minimal init.el used to reproduce this issue is

;; -------------- Start init.el ---------------------------------------
(require 'package)

(setq package-enable-at-startup nil)
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/"))
(package-initialize)

(unless (package-installed-p 'org-plus-contrib)
  (package-refresh-contents)
  (package-install 'org-plus-contrib))

(require 'org)

(require 'goto-addr)

(add-hook 'prog-mode-hook 'goto-address-prog-mode)

;; ------------------------ End init.el ------------------------------

minimal test org file used to reporduce the problem

;; ----------------------- Start test.org -----------------------------
* Test
  This is a simple test org file

  #+BEGIN_SRC emacs-lisp
    (message "A Test")
  #+END_SRC

;; ------------------------ End test.org -----------------------------

used emacs -Q -l .emacs.d/init.el to load the init after ensuring
.emacs.d/elpa is empty.  After startup and download/install of
org-plus-contrib, open test.org and get the org-mode fontificaiton error
message


-- 
regards,

Tim

--
Tim Cross

[-- Attachment #2: Type: text/html, Size: 2552 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-02-27 21:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-26  2:20 Possible compatibility issue with emacs 25.1 and latest org-mode Tim Cross
2017-02-27 21:52 ` Tim Cross

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.