mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 12:30:31 +00:00
LibLine: Rename LineEditor.{cpp,h} => Editor.{cpp,h}
This commit is contained in:
parent
6595469de1
commit
8ab576308f
Notes:
sideshowbarker
2024-07-19 08:01:55 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8ab576308f5
5 changed files with 4 additions and 5 deletions
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "LineEditor.h"
|
||||
#include "Editor.h"
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/ioctl.h>
|
|
@ -1,5 +1,4 @@
|
|||
OBJS = \
|
||||
LineEditor.o
|
||||
OBJS = Editor.o
|
||||
|
||||
LIBRARY = libline.a
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <LibCore/DirIterator.h>
|
||||
#include <LibCore/ElapsedTimer.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibLine/LineEditor.h>
|
||||
#include <LibLine/Editor.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <pwd.h>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include <LibJS/Runtime/Object.h>
|
||||
#include <LibJS/Runtime/PrimitiveString.h>
|
||||
#include <LibJS/Runtime/Value.h>
|
||||
#include <LibLine/LineEditor.h>
|
||||
#include <LibLine/Editor.h>
|
||||
#include <stdio.h>
|
||||
|
||||
bool dump_ast = false;
|
||||
|
|
Loading…
Reference in a new issue