瀏覽代碼

fix code

pull/1/head
10sr 10 年之前
父節點
當前提交
f858866510
共有 1 個檔案被更改,包括 9 行新增6 行删除
  1. +9
    -6
      emacs.el

+ 9
- 6
emacs.el 查看文件

@@ -2062,9 +2062,12 @@ this is test, does not rename files"
;; ".")
;; " Stupid!")))

;; show usename and hostname when prompting something in minibuffer
(defadvice read-from-minibuffer
(before message-for-stupid (prompt &rest args) activate)
(setq prompt
(concat "[" user-login-name "@" system-name "] "
prompt)))
(defadvice read-from-minibuffer (before info-in-prompt activate)
(ad-set-arg 0
(concat "[" user-login-name "@" system-name "] "
(ad-get-arg 0))))

(defadvice read-string (before info-in-prompt activate)
(ad-set-arg 0
(concat "[" user-login-name "@" system-name "] "
(ad-get-arg 0))))

Loading…
取消
儲存