Fix to reLyX configure, to welcome message in minibuffer and to

default document encoding (which is now 'latin1').


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@173 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 1999-10-05 09:17:15 +00:00
parent df4165dea5
commit a2e5d14f48
6 changed files with 24 additions and 15 deletions

View File

@ -1,3 +1,15 @@
1999-10-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
is not overwritten when translated (David Sua'rez de Lis).
* lib/CREDITS: Added David Sua'rez de Lis
* lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
* src/bufferparams.C (BufferParams): default input encoding is now
"latin1"
1999-10-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/table.C (getDocBookAlign): remove bad default value for

View File

@ -1,4 +1,3 @@
#! /bin/bash
dnl Process with autoconf to generate configure script -*- sh -*-
AC_INIT(src/lyx.C)

View File

@ -140,6 +140,10 @@
@bAndre Spiegel
@iE-mail: spiegel@inf.fu-berlin.de
vertical spaces
@bDavid Sua'rez de Lis
@iE-mail: excalibor@iname.com
maintaining es.po since v1.0.0 and other small i18n issues
small fixes (some work, others didn't)
@bPeter Sütterlin
@iE-mail: pit@uni-sw.gwdg.de
aapaper support, bug reports

View File

@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
dnl Process with autoconf to generate configure script -*- sh -*-
AC_INIT(reLyX.in)
AC_PREREQ(2.13) dnl We want to use autoconf 2.13
AC_PREFIX_PROGRAM(reLyX)
PACKAGE=reLyX
VERSION=2.0
@ -11,17 +12,10 @@ dnl Checks for programs.
AC_PROG_INSTALL
RELYX_CHECK_PERL
dnl Checks for libraries.
dnl Replace `main' with a function in -lXpm:
dnl AC_CHECK_LIB(Xpm, main)
dnl Replace `main' with a function in -lforms:
dnl AC_CHECK_LIB(forms, main)
dnl Checks for header files.
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
dnl Finish the work
test $program_suffix = NONE && program_suffix=
LYX_DIR=`eval "echo \`eval \"echo ${datadir}/lyx${program_suffix}\"\`"`
AC_SUBST(LYX_DIR)
AC_OUTPUT(Makefile reLyX, chmod 755 reLyX)

View File

@ -42,7 +42,7 @@ BufferParams::BufferParams()
tocdepth = 3;
language = "default";
fonts = "default";
inputenc = "default";
inputenc = "latin1";
graphicsDriver = "default";
sides = 1;
columns = 1;

View File

@ -184,7 +184,7 @@ void MiniBuffer::Init()
if (!owner->currentBuffer()->isLyxClean())
text += _(" (Changed)");
} else {
if (text != "Welcome to LyX!") // this is a hack
if (text != _("Welcome to LyX!")) // this is a hack
text = _("* No document open *");
}