help-emacs-windows
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[h-e-w] Emacs crashes during closing while using image-mode


From: Jens Spille
Subject: [h-e-w] Emacs crashes during closing while using image-mode
Date: Sat, 28 Dec 2013 20:09:17 +0100
User-agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]