summaryrefslogtreecommitdiff
path: root/lisp/term.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2014-07-08 15:15:28 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2014-07-08 15:15:28 -0400
commit78478ff63638bafb83ddd5e34f242210833c1f1e (patch)
tree098985af4e28a6491e21155513ae6a2fd0a19875 /lisp/term.el
parentdee89b6708a2f369ea1ba4ff0366f6506ccaeaef (diff)
downloademacs-78478ff63638bafb83ddd5e34f242210833c1f1e.tar.gz
* lisp/leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
* lisp/eshell/em-smart.el (eshell-smart-scroll-window): Use with-selected-window.
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el16
1 files changed, 7 insertions, 9 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 95660eae9ad..825a202c046 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -165,15 +165,13 @@
;; full advantage of this package
;;
;; (add-hook 'term-mode-hook
-;; (function
-;; (lambda ()
-;; (setq term-prompt-regexp "^[^#$%>\n]*[#$%>] *")
-;; (make-local-variable 'mouse-yank-at-point)
-;; (make-local-variable 'transient-mark-mode)
-;; (setq mouse-yank-at-point t)
-;; (setq transient-mark-mode nil)
-;; (auto-fill-mode -1)
-;; (setq tab-width 8 ))))
+;; (function
+;; (lambda ()
+;; (setq term-prompt-regexp "^[^#$%>\n]*[#$%>] *")
+;; (setq-local mouse-yank-at-point t)
+;; (setq-local transient-mark-mode nil)
+;; (auto-fill-mode -1)
+;; (setq tab-width 8 ))))
;;
;;
;; ----------------------------------------