Python program debugging in Emacs
Today I tried to debug my python programs: C-c C-c was not working from python-mode to execute the programs. I found a solution from here: http://www.techietalk.org/emacs_python-mode_questions_C-c_C-c_and_broken_docstring_fill-6007726-1282-a.html -------------------------------------------------------------------------------------------------------------------------------------------------- ;; TBD: a horrible hack, but why create new Custom variables? (let ((cmd (concat (if (eq shell (quote cpython)) "python" ...