aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorStefan Monnier2010-05-26 10:19:15 -0400
committerStefan Monnier2010-05-26 10:19:15 -0400
commit6dc439cbcc563ff10c9ae3cf8069c26664e9bd04 (patch)
tree7b03e6d45d123f567fc544f4b0857884e203fd2b /lisp/emulation
parent9841cb4f56bae50c1f31d4fde591a356d3fbf5dc (diff)
downloademacs-6dc439cbcc563ff10c9ae3cf8069c26664e9bd04.tar.gz
emacs-6dc439cbcc563ff10c9ae3cf8069c26664e9bd04.zip
Avoid (expand-file-name ".").
* org.el (org-file-complete-link): * progmodes/ada-xref.el (ada-gnat-parse-gpr): * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/edt.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index 913e5054c47..88b74afe86b 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -2072,7 +2072,7 @@ created."
2072 use it! Perhaps it's lying around here someplace. \n ") 2072 use it! Perhaps it's lying around here someplace. \n ")
2073 (let ((path (locate-library 2073 (let ((path (locate-library
2074 "edt-mapper" 2074 "edt-mapper"
2075 nil (append (list (expand-file-name ".")) load-path)))) 2075 nil (append (list default-directory) load-path))))
2076 (if path 2076 (if path
2077 (progn 2077 (progn
2078 (insert (format 2078 (insert (format
@@ -2563,12 +2563,12 @@ Argument GOLD-BINDING is the Emacs function to be bound to GOLD <KEY>."
2563;;; DEFAULT EDT KEYPAD HELP 2563;;; DEFAULT EDT KEYPAD HELP
2564;;; 2564;;;
2565 2565
2566;;; 2566;;
2567;;; Upper case commands in the keypad diagram below indicate that the 2567;; Upper case commands in the keypad diagram below indicate that the
2568;;; emulation should look and feel very much like EDT. Lower case 2568;; emulation should look and feel very much like EDT. Lower case
2569;;; commands are enhancements and/or additions to the EDT keypad 2569;; commands are enhancements and/or additions to the EDT keypad
2570;;; commands or are native Emacs commands. 2570;; commands or are native Emacs commands.
2571;;; 2571;;
2572 2572
2573(defun edt-keypad-help () 2573(defun edt-keypad-help ()
2574 "DEFAULT EDT Keypad Active. 2574 "DEFAULT EDT Keypad Active.
@@ -2677,7 +2677,7 @@ G-C-\\: Split Window | FNDNXT | Yank | CUT |
2677 2677
2678;;; 2678;;;
2679;;; EDT emulation screen width commands. 2679;;; EDT emulation screen width commands.
2680;;; 2680;;
2681;; Some terminals require modification of terminal attributes when 2681;; Some terminals require modification of terminal attributes when
2682;; changing the number of columns displayed, hence the fboundp tests 2682;; changing the number of columns displayed, hence the fboundp tests
2683;; below. These functions are defined in the corresponding terminal 2683;; below. These functions are defined in the corresponding terminal