দুর্ভাগ্যবশত আমি মনে করি আপনাকে হয় কিউ রিবাইন্ড করতে হবে বা এর উত্স সামঞ্জস্য করতে হবে ediff-quit
। ediff-quit
প্রম্পটের উত্স হিসাবে স্পষ্ট হয় সর্বদা ঘটে।
(defun ediff-quit (reverse-default-keep-variants)
"Finish an Ediff session and exit Ediff.
Unselects the selected difference, if any, restores the read-only and modified
flags of the compared file buffers, kills Ediff buffers for this session
\(but not buffers A, B, C\).
If `ediff-keep-variants' is nil, the user will be asked whether the buffers
containing the variants should be removed \(if they haven't been modified\).
If it is t, they will be preserved unconditionally. A prefix argument,
temporarily reverses the meaning of this variable."
(interactive "P")
(ediff-barf-if-not-control-buffer)
(let ((ctl-buf (current-buffer))
(ctl-frm (selected-frame))
(minibuffer-auto-raise t))
(if (y-or-n-p (format "Quit this Ediff session%s? "
(if (ediff-buffer-live-p ediff-meta-buffer)
" & show containing session group" "")))
(progn
(message "")
(set-buffer ctl-buf)
(ediff-really-quit reverse-default-keep-variants))
(select-frame ctl-frm)
(raise-frame ctl-frm)
(message ""))))
আমি ediff-quit
আপনার নতুন সংজ্ঞা .emacs
দেওয়ার এবং উত্সটিতে একটি প্যাচ জমা দেওয়ার জন্য একটি কাস্টমাইজেশন ভেরিয়েবল যুক্ত করার পরামর্শ দেব ।
মনে রাখবেন যে ইমাসে বাস্তবায়ন উত্স সর্বদা কয়েক কীস্ট্রোক দূরে থাকে। অনুমান করে যে এলিস্প উত্স ইনস্টল করা আছে, টাইপ করুন C-h f, ফাংশনটির নাম লিখুন এবং এটি সংজ্ঞায়িত হয়েছে যেখানে লিঙ্কটি অনুসরণ করুন।