[sawfish] Minor doc, including news.
- From: Christopher Bratusek <chrisb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [sawfish] Minor doc, including news.
- Date: Fri, 17 Sep 2010 17:08:47 +0000 (UTC)
commit 009f5cde3365e1dd6279eec01c89bae4e4beb17d
Author: Teika kazura <teika lavabit com>
Date: Wed Sep 15 21:11:02 2010 +0900
Minor doc, including news.
lisp/sawfish/wm/commands/grow-pack.jl | 12 ++++++------
lisp/sawfish/wm/ext/window-history.jl | 2 +-
lisp/sawfish/wm/state/wm-spec.jl | 6 +-----
man/news.texi | 12 +++++++-----
themes/mxflat/theme.jl | 2 +-
5 files changed, 16 insertions(+), 18 deletions(-)
---
diff --git a/lisp/sawfish/wm/commands/grow-pack.jl b/lisp/sawfish/wm/commands/grow-pack.jl
index 027dfce..923ade0 100644
--- a/lisp/sawfish/wm/commands/grow-pack.jl
+++ b/lisp/sawfish/wm/commands/grow-pack.jl
@@ -102,12 +102,12 @@ Only `avoided' windows are bumped."
(define (grow-window-left w #!optional arg)
"Grows window to the left until it touches another window.
-See `grow-window-up'."
+See `grow-window-up' for full doc."
(grow-window w 'left arg))
(define (grow-window-right w #!optional arg)
"Grows window to the right until it touches another window.
-See `grow-window-up'."
+See `grow-window-up' for full doc."
(grow-window w 'right arg))
(define (grow-window-up w #!optional arg)
@@ -120,17 +120,17 @@ window or pixels instead."
(define (grow-window-down w #!optional arg)
"Grows window downwards until it touches another window.
-See `grow-window-up'."
+See `grow-window-up' for full doc."
(grow-window w 'down arg))
(define (pack-window-left w #!optional arg)
"Moves window to the left until it touches another window.
-See `pack-window-up'."
+See `pack-window-up' for full doc."
(pack-window w 'left arg))
(define (pack-window-right w #!optional arg)
"Moves window to the right until it touches another window.
-See `pack-window-up'."
+See `pack-window-up' for full doc."
(pack-window w 'right arg))
(define (pack-window-up w #!optional arg)
@@ -142,7 +142,7 @@ With a numeric prefix arg, move upwards by that many pixels instead."
(define (pack-window-down w #!optional arg)
"Moves window downwards until it touches another window.
-See `pack-window-up'."
+See `pack-window-up' for full doc."
(pack-window w 'down arg))
;; Command defs
diff --git a/lisp/sawfish/wm/ext/window-history.jl b/lisp/sawfish/wm/ext/window-history.jl
index 7abc7d5..4746f00 100644
--- a/lisp/sawfish/wm/ext/window-history.jl
+++ b/lisp/sawfish/wm/ext/window-history.jl
@@ -85,7 +85,7 @@
(,(_ "Remember _attributes") window-history-save-attributes)
(,(_ "_Forget saved state") window-history-forget)
()
- (,(_ "_Clear window-istory") window-history-clear)
+ (,(_ "_Clear window-history") window-history-clear)
(,(_ "_Save window-history") window-history-save)
(,(_ "_Reload window-history") window-history-load)))
diff --git a/lisp/sawfish/wm/state/wm-spec.jl b/lisp/sawfish/wm/state/wm-spec.jl
index db9f101..674cd9e 100644
--- a/lisp/sawfish/wm/state/wm-spec.jl
+++ b/lisp/sawfish/wm/state/wm-spec.jl
@@ -1,4 +1,4 @@
-;; wm-spec.jl -- implement the new (GNOME/KDE) wm hints spec
+;; wm-spec.jl -- ewmh support
;; Copyright (C) 1999, 2000 John Harper <john dcs warwick ac uk>
@@ -44,10 +44,6 @@
;; - _NET_SHOWING_DESKTOP?
;; - _NET_MOVERESIZE_WINDOW
- ;; maybe add some state extensions for things the spec doesn't
- ;; cover but existed in the old GNOME spec; e.g. _GNOME_WM_STATE_FOO
- ;; for FOO being DO_NOT_COVER, SKIP_FOCUS, ..?
-
;;; constants
(defconst _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0)
diff --git a/man/news.texi b/man/news.texi
index 2cc57cb..f3f13eb 100644
--- a/man/news.texi
+++ b/man/news.texi
@@ -87,13 +87,15 @@ By doing so, you won't be able to bind Sawfish commands to mouse
buttons 6 - 8. This may be fixed in future, but not now because
the current code for buttons 6 - 8 is hackish.
- item Atom handling fix on 32-bit architecture. [Teika Kazura]
+ item Atom handling fix on 32-bit architecture (Java fix). [Teika Kazura]
Function @code{x-atom-name} now accepts all 32 bits. Previously only
-30 bits were treated, if the architecture was 32-bit.
+30 bits were treated, if the architecture was 32-bit. 64-bit systems
+had not this bug.
It used to cause ``Bad argument'' error, most notably on Java
-applications.
+applications. (In theory, an atom is set by X server, not a client.
+But Java applications seem to be affected often by this bug.)
@item Applications menu bugfix [Matthew Love]
@@ -255,8 +257,8 @@ then an alert window is displayed before abortion.
@item All translation files are now in UTF-8 [Teika Kazura]
-Affected files are en_GB, Galician, Italian, Romanian, and Turkish.
-
+Almost all were already UTF-8. The rest, Galician, Italian, Romanian,
+and Turkish are changed this time.
@end itemize
@end itemize
diff --git a/themes/mxflat/theme.jl b/themes/mxflat/theme.jl
index d3be307..5cde836 100644
--- a/themes/mxflat/theme.jl
+++ b/themes/mxflat/theme.jl
@@ -995,7 +995,7 @@ Button1: sets window depth to the adjusted value."
(defcustom mxflat:customize-lock-keymap
nil
- "customize look button keymap"
+ "customize lock button keymap"
:tooltip "By default a button will work as it's name suggests. \
Button1: lock window position"
:group (appearance mxflat:group mxflat:buttons-group
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]