aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-07-04 14:24:04 +0000
committerRichard M. Stallman2005-07-04 14:24:04 +0000
commitee53c9b776d156d31d21494efc05fbc5430f372d (patch)
tree3a41102bb1b4f793b76c9c97371ea01d61032d31
parentf2cb69d5a862556898ef3486fcd62a7d535f72d5 (diff)
downloademacs-ee53c9b776d156d31d21494efc05fbc5430f372d.tar.gz
emacs-ee53c9b776d156d31d21494efc05fbc5430f372d.zip
(org-file-apps-defaults-gnu): Renamed from org-file-apps-defaults-linux.
(org-default-apps): Don't test system-type for `linux'. (org-file-apps): Doc fix.
-rw-r--r--lisp/textmodes/org.el12
1 files changed, 5 insertions, 7 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 1551738050b..12ef9449aef 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -999,7 +999,7 @@ The default is true, to keep new users from shooting into their own foot."
999 :group 'org-link 999 :group 'org-link
1000 :type 'boolean) 1000 :type 'boolean)
1001 1001
1002(defconst org-file-apps-defaults-linux 1002(defconst org-file-apps-defaults-gnu
1003 '((t . emacs) 1003 '((t . emacs)
1004 ("jpg" . "xv %s") 1004 ("jpg" . "xv %s")
1005 ("gif" . "xv %s") 1005 ("gif" . "xv %s")
@@ -1023,7 +1023,7 @@ The default is true, to keep new users from shooting into their own foot."
1023 ("html" . "netscape -remote openURL(%s,new-window)") 1023 ("html" . "netscape -remote openURL(%s,new-window)")
1024 ("htm" . "netscape -remote openURL(%s,new-window)") 1024 ("htm" . "netscape -remote openURL(%s,new-window)")
1025 ("xs" . "soffice %s")) 1025 ("xs" . "soffice %s"))
1026 "Default file applications on a UNIX/LINUX system. 1026 "Default file applications on a GNU-like system.
1027See `org-file-apps'.") 1027See `org-file-apps'.")
1028 1028
1029(defconst org-file-apps-defaults-macosx 1029(defconst org-file-apps-defaults-macosx
@@ -1067,7 +1067,7 @@ and the corresponding command. Possible values for the command are:
1067For more examples, see the system specific constants 1067For more examples, see the system specific constants
1068`org-file-apps-defaults-macosx' 1068`org-file-apps-defaults-macosx'
1069`org-file-apps-defaults-windowsnt' 1069`org-file-apps-defaults-windowsnt'
1070`org-file-apps-defaults-linux'." 1070`org-file-apps-defaults-gnu'."
1071 :group 'org-link 1071 :group 'org-link
1072 :type '(repeat 1072 :type '(repeat
1073 (cons (string :tag "Extension") 1073 (cons (string :tag "Extension")
@@ -5388,9 +5388,7 @@ If the file does not exist, an error is thrown."
5388 org-file-apps-defaults-macosx) 5388 org-file-apps-defaults-macosx)
5389 ((eq system-type 'windows-nt) 5389 ((eq system-type 'windows-nt)
5390 org-file-apps-defaults-windowsnt) 5390 org-file-apps-defaults-windowsnt)
5391 ((eq system-type 'linux) 5391 (t org-file-apps-defaults-gnu)))
5392 org-file-apps-defaults-linux)
5393 (t org-file-apps-defaults-linux)))
5394 5392
5395(defun org-expand-file-name (path) 5393(defun org-expand-file-name (path)
5396 "Replace special path abbreviations and expand the file name." 5394 "Replace special path abbreviations and expand the file name."
@@ -9048,7 +9046,7 @@ When LEVEL is non-nil, increase section numbers on that level."
9048(define-key org-mode-map (org-key 'S-left) 'org-timestamp-down-day) 9046(define-key org-mode-map (org-key 'S-left) 'org-timestamp-down-day)
9049(define-key org-mode-map (org-key 'S-right) 'org-timestamp-up-day) 9047(define-key org-mode-map (org-key 'S-right) 'org-timestamp-up-day)
9050(define-key org-mode-map "\C-c-" 'org-table-insert-hline) 9048(define-key org-mode-map "\C-c-" 'org-table-insert-hline)
9051;; The following line is e.g. necessary for German keyboards under Suse Linux 9049;; The following line is necessary for German keyboards under Suse GNU/Linux
9052(unless org-xemacs-p 9050(unless org-xemacs-p
9053 (define-key org-mode-map [S-iso-lefttab] 'org-shifttab)) 9051 (define-key org-mode-map [S-iso-lefttab] 'org-shifttab))
9054(define-key org-mode-map [(shift tab)] 'org-shifttab) 9052(define-key org-mode-map [(shift tab)] 'org-shifttab)