From c4c877292894b75a010b60fca1383a8db891efe6 Mon Sep 17 00:00:00 2001 From: David Byers <david.byers@liu.se> Date: Sat, 27 Apr 2002 19:55:46 +0000 Subject: [PATCH] =?UTF-8?q?Synkning=20inf=C3=B6r=20release=20av=200.47-BET?= =?UTF-8?q?A-1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/Makefile | 2 +- doc/NEWS-0.47 | 4 ++++ src/ChangeLog | 7 +++++++ src/Makefile | 2 +- src/commands2.el | 10 ++++++---- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index e5619680..64119e5c 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,7 +22,7 @@ # # Please mail bug reports to bug-lyskom@lysator.liu.se. -CLIENTVERSION = 0.46.2-BETA-1 +CLIENTVERSION = 0.47-BETA-1 SHELL = /bin/sh RM = rm -f diff --git a/doc/NEWS-0.47 b/doc/NEWS-0.47 index 0ebb32af..a23e1755 100644 --- a/doc/NEWS-0.47 +++ b/doc/NEWS-0.47 @@ -59,6 +59,10 @@ *** Klienten tittar p� omgivningsvariablerna KOMLANGUAGE och LANG (i den ordningen) f�r att best�mma defaultspr�k. +*** F�rsta g�ngen man loggar in s� s�tts spr�ket globalt + (tangenmappningar och allt) baserat p� kom-default-language. Vid + efterf�ljande inloggningar s� sker detta inte. + *** Defaultspr�k har �ndrats fr�n svenska till engelska. diff --git a/src/ChangeLog b/src/ChangeLog index fd2910ee..9377403a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,12 @@ 2002-04-27 David Byers <david.byers@swipnet.se> + * Release of 0.47-BETA-1 + + * commands2.el (kom-obsolete-extended-command-binding): Print the + warning (and if Emacs supports it, the prompt in the minibuffer) + using kom-warning-face. I find that I miss the warning too easily + otherwise. + Fix bug 485: * english-strings.el, swedish-strings.el: Number of lines in view-text-first-line was formatted as a text number, not a simple diff --git a/src/Makefile b/src/Makefile index 064247fd..90a97cf4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -36,7 +36,7 @@ # Version of the client. # # Also remember to change version number in ../doc/Makefile! -CLIENTVERSION = 0.46.2-BETA-2 +CLIENTVERSION = 0.47-BETA-1 ###################################################################### diff --git a/src/commands2.el b/src/commands2.el index 45f58c06..96eb3fa9 100644 --- a/src/commands2.el +++ b/src/commands2.el @@ -2891,13 +2891,15 @@ will honor this redirection." (defun kom-obsolete-extended-command-binding () "Temporary function for when we moved kom-extended-command from a" (interactive) - (lyskom-insert-before-prompt "\ ----------------------------------------------------------------- + (lyskom-format-insert-before-prompt "\ +%#1@---------------------------------------------------------------- Tangenten f�r inmatning av kommandon har flyttat fr�n a till x. Anv�nd x ist�llet f�r a om du vill ange LysKOM-kommandon vid namn. F�r att undvika att du k�r o�nskade LysKOM-kommandon s� m�ste du trycka p� enter f�r att forts�tta. ---------------------------------------------------------------- -") - (read-from-minibuffer "Tryck return eller enter f�r att g� vidare: ")) +" + '(face kom-warning-face)) + (read-from-minibuffer + (lyskom-format "%#1@Tryck return eller enter f�r att g� vidare: " '(face kom-warning-face)))) -- GitLab