diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-26 23:48:04 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-26 23:48:04 -0700 |
commit | 1bcc463741851fb2322b3d4b7c90d308f2235b75 (patch) | |
tree | 7a9848b982e99269de92e0a859f3c25c611f1e55 /lisp/term | |
parent | 7d3e38433d745cbf7e44adcaf3f8da426f42b0b3 (diff) | |
download | emacs-1bcc463741851fb2322b3d4b7c90d308f2235b75.tar.gz |
ns-win.el trivia.
* term/ns-win.el: (ns-handle-nxopen): Optionally handle the temp-case.
(ns-handle-nxopentemp): Just call ns-handle-nxopen.
(ns-insert-file, ns-find-file): Use `pop'.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/ns-win.el | 37 |
1 files changed, 16 insertions, 21 deletions
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index a70def2fa5e..ab18d9ad806 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el @@ -47,7 +47,7 @@ (eval-when-compile (require 'cl)) ; lexical-let -;; Documentation-purposes only: actually loaded in loadup.el +;; Documentation-purposes only: actually loaded in loadup.el. (require 'frame) (require 'mouse) (require 'faces) @@ -66,14 +66,14 @@ ;; nsterm.m. (defvar ns-input-file) -(defun ns-handle-nxopen (switch) - (setq unread-command-events (append unread-command-events '(ns-open-file)) +(defun ns-handle-nxopen (switch &optional temp) + (setq unread-command-events (append unread-command-events + (if temp '(ns-open-temp-file) + '(ns-open-file))) ns-input-file (append ns-input-file (list (pop x-invocation-args))))) (defun ns-handle-nxopentemp (switch) - (setq unread-command-events (append unread-command-events - '(ns-open-temp-file)) - ns-input-file (append ns-input-file (list (pop x-invocation-args))))) + (ns-handle-nxopen switch t)) (defun ns-ignore-1-arg (switch) (setq x-invocation-args (cdr x-invocation-args))) @@ -154,7 +154,7 @@ The properties returned may include `top', `left', `height', and `width'." (define-key global-map [kp-prior] 'scroll-down) (define-key global-map [kp-next] 'scroll-up) -;;; Allow shift-clicks to work similarly to under Nextstep +;; Allow shift-clicks to work similarly to under Nextstep. (define-key global-map [S-mouse-1] 'mouse-save-then-kill) (global-unset-key [S-down-mouse-1]) @@ -396,8 +396,7 @@ See `ns-insert-working-text'." (let ((str (buffer-string))) (delete-region (point-min) (point-max)) (insert (ns-convert-utf8-nfd-to-nfc str)) - (- (point-max) (point-min)) - )))) + (- (point-max) (point-min)))))) (define-coding-system 'utf-8-nfd "UTF-8 NFD (decomposed) encoding." @@ -421,12 +420,11 @@ See `ns-insert-working-text'." "Insert contents of file `ns-input-file' like insert-file but with less prompting. If file is a directory perform a `find-file' on it." (interactive) - (let ((f)) - (setq f (car ns-input-file)) - (setq ns-input-file (cdr ns-input-file)) + (let (f) + (setq f (pop ns-input-file)) (if (file-directory-p f) (find-file f) - (push-mark (+ (point) (car (cdr (insert-file-contents f)))))))) + (push-mark (+ (point) (cadr (insert-file-contents f))))))) (defvar ns-select-overlay nil "Overlay used to highlight areas in files requested by Nextstep apps.") @@ -479,7 +477,6 @@ Lines are highlighted according to `ns-input-line'." (add-hook 'first-change-hook 'ns-unselect-line) - ;;;; Preferences handling. (declare-function ns-get-resource "nsfns.m" (owner name)) @@ -530,12 +527,11 @@ unless the current buffer is a scratch buffer." (defun ns-find-file () "Do a `find-file' with the `ns-input-file' as argument." (interactive) - (let ((f) (file) (bufwin1) (bufwin2)) - (setq f (file-truename (car ns-input-file))) - (setq ns-input-file (cdr ns-input-file)) - (setq file (find-file-noselect f)) - (setq bufwin1 (get-buffer-window file 'visible)) - (setq bufwin2 (get-buffer-window "*scratch*" 'visibile)) + (let (f file bufwin1 bufwin2) + (setq f (file-truename (pop ns-input-file)) + file (find-file-noselect f) + bufwin1 (get-buffer-window file 'visible) + bufwin2 (get-buffer-window "*scratch*" 'visibile)) (cond (bufwin1 (select-frame (window-frame bufwin1)) @@ -648,7 +644,6 @@ unless the current buffer is a scratch buffer." (error "Cancelled"))) (print-buffer))) - ;;;; Font support. ;; Needed for font listing functions under both backend and normal |