unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Dashes in mode-line
@ 2010-10-18 13:36 Julien Danjou
  2010-10-18 14:52 ` Eli Zaretskii
  0 siblings, 1 reply; 17+ messages in thread
From: Julien Danjou @ 2010-10-18 13:36 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 386 bytes --]

Hi,

What's the current status and rational about keeping the dashes in
mode-line?

Reading the mail archives, I've seen Miles claiming it was only needed
for vt52 which we hope are not used anymore nowadays.

It seems rather useless now, so I propose to remove them. Attached is a
first version of a patch implementing this removal. It really makes the
mode-line easier to read IMHO.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-bindings-remove-dashes-in-mode-line.patch --]
[-- Type: text/x-diff, Size: 3413 bytes --]

From c33afb4c39717145a604951068a1e2824ec1138c Mon Sep 17 00:00:00 2001
From: Julien Danjou <julien@danjou.info>
Date: Mon, 18 Oct 2010 15:33:31 +0200
Subject: [PATCH] bindings: remove dashes in mode-line

Signed-off-by: Julien Danjou <julien@danjou.info>
---
 etc/tutorials/TUTORIAL |   12 ++++++------
 lisp/ChangeLog         |    4 ++++
 lisp/bindings.el       |    9 ++++-----
 3 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/etc/tutorials/TUTORIAL b/etc/tutorials/TUTORIAL
index 1d80f4e..f566df9 100644
--- a/etc/tutorials/TUTORIAL
+++ b/etc/tutorials/TUTORIAL
@@ -498,12 +498,12 @@ you save, Emacs leaves the original file under a changed name in case
 you later decide that your changes were a mistake.
 
 If you look near the bottom of the screen you will see a line that
-begins and ends with dashes, and starts with "--:--- TUTORIAL" or
-something like that.  This part of the screen normally shows the name
-of the file that you are visiting.  Right now, you are visiting a file
-called "TUTORIAL" which is your personal scratch copy of the Emacs
-tutorial.  When you find a file with Emacs, that file's name will
-appear in that precise spot.
+begins with dashes, and starts with "--:--- TUTORIAL" or something
+like that.  This part of the screen normally shows the name of the
+file that you are visiting.  Right now, you are visiting a file called
+"TUTORIAL" which is your personal scratch copy of the Emacs tutorial.
+When you find a file with Emacs, that file's name will appear in that
+precise spot.
 
 One special thing about the command for finding a file is that you
 have to say what file name you want.  We say the command "reads an
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1195fe8..be65819 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2010-10-18  Julien Danjou  <julien@danjou.info>
+
+	* bindings.el: Replaces dashes by spaces in default `mode-line-format'.
+
 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
 
 	* cus-theme.el (custom-theme--migrate-settings): New var.
diff --git a/lisp/bindings.el b/lisp/bindings.el
index d19db2c..2f8c8aa 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -318,7 +318,7 @@ Keymap to display on column and line numbers.")
 mouse-2: Make current window occupy the whole frame\n\
 mouse-3: Remove current window from display")
        (recursive-edit-help-echo "Recursive edit, type C-M-c to get out")
-       (dashes (propertize "--" 'help-echo help-echo))
+       (spaces (propertize "  " 'help-echo help-echo))
        (standard-mode-line-format
 	(list
 	 "%e"
@@ -334,9 +334,8 @@ mouse-3: Remove current window from display")
 	 '(vc-mode vc-mode)
 	 (propertize "  " 'help-echo help-echo)
 	 'mode-line-modes
-	 `(which-func-mode ("" which-func-format ,dashes))
-	 `(global-mode-string ("" global-mode-string ,dashes))
-	 (propertize "-%-" 'help-echo help-echo)))
+	 `(which-func-mode ("" which-func-format ,spaces))
+	 `(global-mode-string ("" global-mode-string ,spaces))))
        (standard-mode-line-modes
 	(list
 	 (propertize "%[" 'help-echo recursive-edit-help-echo)
@@ -362,7 +361,7 @@ mouse-3: Toggle minor modes"
 				 'mouse-2 #'mode-line-widen))
 	 (propertize ")" 'help-echo help-echo)
 	 (propertize "%]" 'help-echo recursive-edit-help-echo)
-	 (propertize "--" 'help-echo help-echo)))
+         spaces))
 
        (standard-mode-line-position
 	`((-3 ,(propertize
-- 
1.7.1


[-- Attachment #3: Type: text/plain, Size: 79 bytes --]


-- 
Julien Danjou
// ᐰ <julien@danjou.info>   http://julien.danjou.info

^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2010-10-22 10:38 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-18 13:36 Dashes in mode-line Julien Danjou
2010-10-18 14:52 ` Eli Zaretskii
2010-10-19 10:32   ` Julien Danjou
2010-10-19 13:09     ` Eli Zaretskii
2010-10-19 14:59       ` Julien Danjou
2010-10-19 19:21         ` Chong Yidong
2010-10-19 15:51       ` Jason Rumney
2010-10-19 18:30         ` Eli Zaretskii
2010-10-20 13:05       ` Misleading `window-system' docstring (was Re: Dashes in mode-line) Štěpán Němec
2010-10-20 18:20         ` Misleading `window-system' docstring Eli Zaretskii
2010-10-20 18:32           ` Chong Yidong
2010-10-21  0:58           ` Stefan Monnier
2010-10-22 10:38             ` Eli Zaretskii
2010-10-19 12:29   ` Dashes in mode-line Deniz Dogan
2010-10-19 13:08     ` Eli Zaretskii
2010-10-19 13:49   ` Deniz Dogan
2010-10-19 14:31     ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).