emacs-circe / circe

Circe, a Client for IRC in Emacs
GNU General Public License v3.0
395 stars 51 forks source link

fix lui-saved-text-properties added whole buffer #332

Closed yuya373 closed 6 years ago

yuya373 commented 6 years ago

Problem

lui-insert-with-text-properties add text-property 'lui-saved-properties to whole buffer.

(add-text-property ...) is executed after (widen), (point-min) and (point-max) return whole buffer.

I move (add-text-property ...) before (widen) .

jorgenschaefer commented 6 years ago

Wow, nice catch! Thank you!