rejeep / drag-stuff.el

Drag stuff around in Emacs
233 stars 12 forks source link

Add emacs 25+ compatibility #11

Closed kaushalmodi closed 9 years ago

kaushalmodi commented 9 years ago

save-mark-and-excursion should be used instead of save-excursion. From emacs 25 onwards, save-excursion does not save the mark and so the region drags do not work any more. That is fixed in this commit. This commit should also not break in older emacsen.

Source for fixes:

kaushalmodi commented 9 years ago

A similar issue got fixed in the expand-region package using the same fix.

rejeep commented 9 years ago

Merged, thanks!