* poe-18.el (set-frame-heigth): Bug fixed.
authorminakaji <minakaji>
Mon, 18 Dec 2000 20:37:09 +0000 (20:37 +0000)
committerminakaji <minakaji>
Mon, 18 Dec 2000 20:37:09 +0000 (20:37 +0000)
ChangeLog
poe-18.el

index 37fba5e..4a7d8ca 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-12-19  NAKAJIMA Mikio  <minakaji@osaka.email.ne.jp>
+
+       * poe-18.el (set-frame-heigth): Bug fixed.
+
+2000-12-17  NAKAJIMA Mikio  <minakaji@osaka.email.ne.jp>
+
+       * APEL-MK (install-just-print-p): Move to install.el.
+       (install-update-package-files): Ditto.
+
 2000-12-16  NAKAJIMA Mikio  <minakaji@osaka.email.ne.jp>
 
        * poe-18.el (frame-width): New function.
index bfdc0cd..976222f 100644 (file)
--- a/poe-18.el
+++ b/poe-18.el
@@ -645,7 +645,7 @@ No argument or nil as argument means do this for the current buffer."
 ;;;
 ;; The following four are frequently used for manupulating the current frame.
 ;; frame.el has `screen-width', `screen-height', `set-screen-width' and
-;; `set-screen-heigth' for backward compatibility and declare them as obsolete.
+;; `set-screen-height' for backward compatibility and declare them as obsolete.
 (defun frame-width (&optional frame)
   "Return number of columns available for display on FRAME.
 If FRAME is omitted, describe the currently selected frame."
@@ -662,11 +662,11 @@ Optional third arg non-nil means that redisplay should use COLS columns
 but that the idea of the actual width of the frame should not be changed."
   (set-screen-width cols pretend))
 
-(defun set-frame-heigth (frame cols &optional pretend)
+(defun set-frame-height (frame cols &optional pretend)
   "Specify that the frame FRAME has LINES lines.
 Optional third arg non-nil means that redisplay should use LINES lines
 but that the idea of the actual height of the frame should not be changed."
-  (set-screen-heigth cols pretend))
+  (set-screen-height cols pretend))
 
 ;;; @@ Environment variables.
 ;;;