Emacs crashes during closing while using image-mode

Jens Spille <[email protected]>
Newsgroups gmane.emacs.windows
Message-ID <[email protected]>
I use version 24.2 of GNU Emacs on Windows 7 Pro. Everything works fine,
but the image mode.

I can add am image file link to a text or org-mode files, activating
'iimage-mode' or 'org-display-inlines-images' and see the images as e.g.
*.png image. Perfect!

I can deactivating the image mode, still everything is fine. But if I
close emacs C-x C-c it crashes. Emacs does *not* crash, if I don't use
the image mode during my sessions.

I downloaded the latest version today 'emacs-24.3-bin-i386.zip', it is
OK until I start 'addpm.exe' to activate the image-mode support. Then
emacs crashes while closing.

Thanks a lot for any help in advance

Jens

PS: For your interest. I have written a few lines for my .emacs file to
easy include screenshorts in text or org-mode files. I use Keepnote
Boxcutter 1) to capture the image and start the program with:

(defun boxcutter()
"Take a screenshot into a unique-named file in the current buffer file
directory and insert a link to this file."
  (interactive)
  (setq filename
          (concat (buffer-file-name)
                  "_"
                  (format-time-string "%Y%m%d_%H%M%S") ".png")
  )
  (shell-command (format "c:\\<mypath>\\KeepNoteBoxCutter\\boxcutter.exe
%s" filename))
  (insert (concat "[[file:" (file-relative-name filename) "]]"))
  (org-display-inline-images)
)
(global-set-key (kbd "\C-c b") 'boxcutter)

1) http://keepnote.org/boxcutter/

Jens
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.