Advertisement
Guest User

Untitled

a guest
Jul 11th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. From 2dc764dc55dc47037fdb771d7ed6c201cdeb0976 Mon Sep 17 00:00:00 2001
  2. From: Eric Hanchrow <eric.hanchrow@gmail.com>
  3. Date: Wed, 11 Jun 2014 21:45:33 -0400
  4. Subject: [PATCH] * lisp/progmodes/python.el (run-python): Use
  5. read-shell-command.
  6.  
  7. Conflicts:
  8. lisp/ChangeLog
  9. ---
  10. lisp/ChangeLog | 38 +++++++++++++++++++++++++++++---------
  11. lisp/progmodes/python.el | 2 +-
  12. 2 files changed, 30 insertions(+), 10 deletions(-)
  13.  
  14. diff --git a/lisp/ChangeLog b/lisp/ChangeLog
  15. index eb31d5f..02fa6fc 100644
  16. --- a/lisp/ChangeLog
  17. +++ b/lisp/ChangeLog
  18. @@ -1,17 +1,35 @@
  19. -2015-04-10 Nicolas Petton <nicolas@petton.fr>
  20. -
  21. - * Version 24.5 released.
  22. -
  23. -2015-04-03 Alan Mackenzie <acm@muc.de>
  24. -
  25. - * progmodes/cc-mode.el (c-font-lock-init): Revert 2015-02-01 change
  26. - "Stop Font Lock forcing fontification from BOL." (Bug#20245)
  27. +2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
  28. +
  29. + * rect.el: Make it possible to move bounds past EOL or into TABs.
  30. + (operate-on-rectangle): Use apply-on-rectangle.
  31. + (rectangle--mark-crutches): New var.
  32. + (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
  33. + (rectangle--crutches, rectangle--reset-crutches): New functions.
  34. + (apply-on-rectangle): Obey crutches. Avoid setq.
  35. + Fix missing final iteration if end is at EOB&BOL.
  36. + (rectangle-mark-mode-map): Add remap bindings for
  37. + exchange-point-and-mark and char/line movements.
  38. + (rectangle--*-char): New function.
  39. + (rectangle-exchange-point-and-mark, rectangle-right-char)
  40. + (rectangle-left-char, rectangle-forward-char)
  41. + (rectangle-backward-char, rectangle-next-line)
  42. + (rectangle-previous-line): New commands.
  43. + (rectangle--place-cursor): New function.
  44. + (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
  45. +
  46. +2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
  47. +
  48. + * progmodes/python.el (run-python): Use read-shell-command.
  49.  
  50. 2015-04-01 Michael Albinus <michael.albinus@gmx.de>
  51.  
  52. * net/tramp.el (tramp-handle-unhandled-file-name-directory):
  53. Return nil when required by the spec. (Bug#20233)
  54.  
  55. +2015-04-01 Nicolas Petton <nicolas@petton.fr>
  56. +
  57. + * Version 24.5 released.
  58. +
  59. 2015-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
  60.  
  61. * emacs-lisp/smie.el (smie-backward-sexp-command)
  62. @@ -203,8 +221,10 @@
  63. 2015-02-01 Alan Mackenzie <acm@muc.de>
  64.  
  65. CC Mode: Stop Font Lock forcing fontification from BOL.
  66. + Fixes debbugs#19669.
  67. +
  68. * progmodes/cc-mode.el (c-font-lock-init):
  69. - Setq font-lock-extend-region-functions to nil. (Bug#19669)
  70. + Setq font-lock-extend-region-functions to nil.
  71.  
  72. 2015-01-31 Alan Mackenzie <acm@muc.de>
  73.  
  74. diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
  75. index de2d2d1..02137ce 100644
  76. --- a/lisp/progmodes/python.el
  77. +++ b/lisp/progmodes/python.el
  78. @@ -2314,7 +2314,7 @@ process buffer for a list of commands.)"
  79. (interactive
  80. (if current-prefix-arg
  81. (list
  82. - (read-string "Run Python: " (python-shell-parse-command))
  83. + (read-shell-command "Run Python: " (python-shell-parse-command))
  84. (y-or-n-p "Make dedicated process? ")
  85. (= (prefix-numeric-value current-prefix-arg) 4))
  86. (list (python-shell-parse-command) nil t)))
  87. --
  88. 2.1.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement