mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
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:
parent
df4165dea5
commit
a2e5d14f48
12
ChangeLog
12
ChangeLog
@ -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>
|
1999-10-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* src/table.C (getDocBookAlign): remove bad default value for
|
* src/table.C (getDocBookAlign): remove bad default value for
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#! /bin/bash
|
|
||||||
dnl Process with autoconf to generate configure script -*- sh -*-
|
dnl Process with autoconf to generate configure script -*- sh -*-
|
||||||
|
|
||||||
AC_INIT(src/lyx.C)
|
AC_INIT(src/lyx.C)
|
||||||
|
@ -140,6 +140,10 @@
|
|||||||
@bAndre Spiegel
|
@bAndre Spiegel
|
||||||
@iE-mail: spiegel@inf.fu-berlin.de
|
@iE-mail: spiegel@inf.fu-berlin.de
|
||||||
vertical spaces
|
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
|
@bPeter Sütterlin
|
||||||
@iE-mail: pit@uni-sw.gwdg.de
|
@iE-mail: pit@uni-sw.gwdg.de
|
||||||
aapaper support, bug reports
|
aapaper support, bug reports
|
||||||
|
@ -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_INIT(reLyX.in)
|
||||||
AC_PREREQ(2.13) dnl We want to use autoconf 2.13
|
AC_PREREQ(2.13) dnl We want to use autoconf 2.13
|
||||||
|
AC_PREFIX_PROGRAM(reLyX)
|
||||||
|
|
||||||
PACKAGE=reLyX
|
PACKAGE=reLyX
|
||||||
VERSION=2.0
|
VERSION=2.0
|
||||||
@ -11,17 +12,10 @@ dnl Checks for programs.
|
|||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
RELYX_CHECK_PERL
|
RELYX_CHECK_PERL
|
||||||
|
|
||||||
dnl Checks for libraries.
|
dnl Finish the work
|
||||||
dnl Replace `main' with a function in -lXpm:
|
test $program_suffix = NONE && program_suffix=
|
||||||
dnl AC_CHECK_LIB(Xpm, main)
|
LYX_DIR=`eval "echo \`eval \"echo ${datadir}/lyx${program_suffix}\"\`"`
|
||||||
dnl Replace `main' with a function in -lforms:
|
AC_SUBST(LYX_DIR)
|
||||||
dnl AC_CHECK_LIB(forms, main)
|
|
||||||
|
|
||||||
dnl Checks for header files.
|
|
||||||
|
|
||||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
||||||
|
|
||||||
dnl Checks for library functions.
|
|
||||||
|
|
||||||
AC_OUTPUT(Makefile reLyX, chmod 755 reLyX)
|
AC_OUTPUT(Makefile reLyX, chmod 755 reLyX)
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ BufferParams::BufferParams()
|
|||||||
tocdepth = 3;
|
tocdepth = 3;
|
||||||
language = "default";
|
language = "default";
|
||||||
fonts = "default";
|
fonts = "default";
|
||||||
inputenc = "default";
|
inputenc = "latin1";
|
||||||
graphicsDriver = "default";
|
graphicsDriver = "default";
|
||||||
sides = 1;
|
sides = 1;
|
||||||
columns = 1;
|
columns = 1;
|
||||||
|
@ -184,7 +184,7 @@ void MiniBuffer::Init()
|
|||||||
if (!owner->currentBuffer()->isLyxClean())
|
if (!owner->currentBuffer()->isLyxClean())
|
||||||
text += _(" (Changed)");
|
text += _(" (Changed)");
|
||||||
} else {
|
} else {
|
||||||
if (text != "Welcome to LyX!") // this is a hack
|
if (text != _("Welcome to LyX!")) // this is a hack
|
||||||
text = _("* No document open *");
|
text = _("* No document open *");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user