aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-03-28 17:49:49 +0000
committerJuanma Barranquero2003-03-28 17:49:49 +0000
commitc337cd0a628667997a3f40d7439df8cce968e34d (patch)
tree994bf88d6be6fdb773f8de2645ce2fdb3eeece89
parentb08b261e8b7aabbc3a7647e620728a6dbe973652 (diff)
downloademacs-c337cd0a628667997a3f40d7439df8cce968e34d.tar.gz
emacs-c337cd0a628667997a3f40d7439df8cce968e34d.zip
(iconify-or-deiconify-frame): Define for compatibility with packages
that use it.
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/term/mac-win.el7
2 files changed, 28 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f12cfdb3ea5..255d2c40f19 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,22 @@
12003-03-28 Sudish Joseph <sudish@corp.earthlink.net> (tiny change)
2
3 * term/mac-win.el (iconify-or-deiconify-frame): Define for
4 compatibility with packages that use it.
5
62003-03-28 Lute Kamstra <Lute.Kamstra@cwi.nl>
7
8 * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): Fix
9 docstring.
10 (checkdoc-interactive, checkdoc-message-interactive): Make them
11 perform spell checking when appropriate.
12 (checkdoc-interactive-loop): Fix docstring and a few typos.
13 (checkdoc-interactive-ispell-loop)
14 (checkdoc-message-interactive-ispell-loop): New functions.
15 (checkdoc-next-error): Fix docstring.
16 (checkdoc-this-string-valid-engine): Fix typo.
17 (checkdoc-ispell-docstring-engine): Do test for
18 checkdoc-autofix-flag = nil.
19
12003-03-28 Jonathan Yavner <jyavner@engineer.com> 202003-03-28 Jonathan Yavner <jyavner@engineer.com>
2 21
3 * emacs-lisp/testcover.el (testcover-mark-all): Handle screwy 22 * emacs-lisp/testcover.el (testcover-mark-all): Handle screwy
@@ -9,7 +28,7 @@
9 * vc-cvs.el (vc-cvs-parse-entry): Make sure a file with conflicts 28 * vc-cvs.el (vc-cvs-parse-entry): Make sure a file with conflicts
10 is marked as edited. 29 is marked as edited.
11 30
122003-03-26 Kenichi Handa <handa@etlken2> 312003-03-26 Kenichi Handa <handa@m17n.org>
13 32
14 * files.el (recode-file-name): New function. 33 * files.el (recode-file-name): New function.
15 34
@@ -85,7 +104,7 @@
85 (ido-wide-find-file, ido-wide-find-dir, ido-make-directory): 104 (ido-wide-find-file, ido-wide-find-dir, ido-make-directory):
86 Let-bind enable-recursive-minibuffers to t around read-string. 105 Let-bind enable-recursive-minibuffers to t around read-string.
87 106
882003-03-22 Kenichi Handa <handa@etlken2> 1072003-03-22 Kenichi Handa <handa@m17n.org>
89 108
90 * international/fontset.el (setup-default-fontset): 109 * international/fontset.el (setup-default-fontset):
91 Use indian-font-char-range for specifying ranges of indian-glyph 110 Use indian-font-char-range for specifying ranges of indian-glyph
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el
index 6b014ddaba3..2b66679e39e 100644
--- a/lisp/term/mac-win.el
+++ b/lisp/term/mac-win.el
@@ -172,6 +172,13 @@ Switch to a buffer editing the last file dropped."
172 '(lambda () 172 '(lambda ()
173 (defvar mac-ready-for-drag-n-drop t))) 173 (defvar mac-ready-for-drag-n-drop t)))
174 174
175(defun iconify-or-deiconify-frame ()
176 "Iconify the selected frame, or deiconify if it's currently an icon."
177 (interactive)
178 (if (eq (cdr (assq 'visibility (frame-parameters))) t)
179 (iconify-frame)
180 (make-frame-visible)))
181
175; Define constant values to be set to mac-keyboard-text-encoding 182; Define constant values to be set to mac-keyboard-text-encoding
176(defconst kTextEncodingMacRoman 0) 183(defconst kTextEncodingMacRoman 0)
177(defconst kTextEncodingISOLatin1 513 "0x201") 184(defconst kTextEncodingISOLatin1 513 "0x201")