The following message is a courtesy copy of an article that has been posted to gmane.emacs.orgmode as well.
1) What exactly did you do? Evaluate the following Emacs config (dynamic cursor config is from http://emacs-fu.blogspot.com/2009/12/changing-cursor-color-and-shape.html): --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "~/.emacs.d/org-mode/lisp") (add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp") (require 'org-install) (setq djcb-read-only-color "gray") (setq djcb-read-only-cursor-type 'hbar) (setq djcb-overwrite-color "red") (setq djcb-overwrite-cursor-type 'box) (setq djcb-normal-color "yellow") (setq djcb-normal-cursor-type 'bar) (defun djcb-set-cursor-according-to-mode () "change cursor color and type according to some minor modes." (cond (buffer-read-only (set-cursor-color djcb-read-only-color) (setq cursor-type djcb-read-only-cursor-type)) (overwrite-mode (set-cursor-color djcb-overwrite-color) (setq cursor-type djcb-overwrite-cursor-type)) (t (set-cursor-color djcb-normal-color) (setq cursor-type djcb-normal-cursor-type)))) (add-hook 'post-command-hook 'djcb-set-cursor-according-to-mode) --8<---------------cut here---------------end--------------->8--- Create the following org file: --8<---------------cut here---------------start------------->8--- #+STARTUP: inlineimages [[file:/usr/local/share/emacs/23.2/etc/images/splash.png]] --8<---------------cut here---------------end--------------->8--- Open the org-file and click on the image. 2) What did you expect to happen? The image to be displayed in it's own buffer. 3) What happened instead? Emacs crashed with "Segmentation fault". Versions: Org-mode version 7.3 (release_7.3.120.g666e6) GNU Emacs 23.2.1 _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode