diff options
| author | Fabián Ezequiel Gallina | 2012-05-17 00:03:06 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2012-05-17 00:03:06 -0300 |
| commit | 2db30ac50abaa2630285a24363be3ccda8889ce0 (patch) | |
| tree | e217579d0df27f5facfa895e7339c6a7a2d9c148 /lisp/progmodes/python.el | |
| parent | 62feb9156582ff25dd6ce05499506248e2b1521b (diff) | |
| download | emacs-2db30ac50abaa2630285a24363be3ccda8889ce0.tar.gz emacs-2db30ac50abaa2630285a24363be3ccda8889ce0.zip | |
Use insert instead of insert-string
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 6a5435afb24..650f030067c 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1160,7 +1160,7 @@ Return the output." | |||
| 1160 | (> (length python-shell-prompt-output-regexp) 0)) | 1160 | (> (length python-shell-prompt-output-regexp) 0)) |
| 1161 | (setq output-buffer | 1161 | (setq output-buffer |
| 1162 | (with-temp-buffer | 1162 | (with-temp-buffer |
| 1163 | (insert-string output-buffer) | 1163 | (insert output-buffer) |
| 1164 | (goto-char (point-min)) | 1164 | (goto-char (point-min)) |
| 1165 | (forward-comment 1) | 1165 | (forward-comment 1) |
| 1166 | (buffer-substring-no-properties | 1166 | (buffer-substring-no-properties |