Browse Source

org-src: add a note about bogosity of read-only overlays

* lisp/org-src.el (org-src--make-source-overlay): Add a TODO comment.
Aaron Ecay 10 năm trước cách đây
mục cha
commit
7c86747881
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  1. 8 0
      lisp/org-src.el

+ 8 - 0
lisp/org-src.el

@@ -294,6 +294,14 @@ END."
 		 (let ((map (make-sparse-keymap)))
 		   (define-key map [mouse-1] 'org-edit-src-continue)
 		   map))
+    ;; TODO: The below line doesn't work for two reasons:
+    ;; - It should be 'read-only
+    ;; - 'read-only apparently doesn't work on overlays (also empirically tested):
+    ;;    <https://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01598.html>
+    ;; If this feature is to be kept, it should be implemented via text
+    ;; properties, which will require fiddling around in more places
+    ;; (such as when the contents are copied back into the buffer after
+    ;; editing is complete.)
     (overlay-put overlay :read-only "Leave me alone")
     overlay))