qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs TODO.org dired.c hex.c image.c tty.c cut...


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs TODO.org dired.c hex.c image.c tty.c cut...
Date: Thu, 9 Jun 2016 16:24:10 +0000 (UTC)

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        16/06/09 16:24:10

Modified files:
        .              : TODO.org dired.c hex.c image.c tty.c cutils.c 
                         extras.c html.c perl.c unihex.c 

Log message:
        update copyrights, TODO list

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/TODO.org?cvsroot=qemacs&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/qemacs/dired.c?cvsroot=qemacs&r1=1.65&r2=1.66
http://cvs.savannah.gnu.org/viewcvs/qemacs/hex.c?cvsroot=qemacs&r1=1.46&r2=1.47
http://cvs.savannah.gnu.org/viewcvs/qemacs/image.c?cvsroot=qemacs&r1=1.30&r2=1.31
http://cvs.savannah.gnu.org/viewcvs/qemacs/tty.c?cvsroot=qemacs&r1=1.69&r2=1.70
http://cvs.savannah.gnu.org/viewcvs/qemacs/cutils.c?cvsroot=qemacs&r1=1.17&r2=1.18
http://cvs.savannah.gnu.org/viewcvs/qemacs/extras.c?cvsroot=qemacs&r1=1.40&r2=1.41
http://cvs.savannah.gnu.org/viewcvs/qemacs/html.c?cvsroot=qemacs&r1=1.38&r2=1.39
http://cvs.savannah.gnu.org/viewcvs/qemacs/perl.c?cvsroot=qemacs&r1=1.24&r2=1.25
http://cvs.savannah.gnu.org/viewcvs/qemacs/unihex.c?cvsroot=qemacs&r1=1.31&r2=1.32

Patches:
Index: TODO.org
===================================================================
RCS file: /sources/qemacs/qemacs/TODO.org,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- TODO.org    7 Jun 2016 08:56:39 -0000       1.12
+++ TODO.org    9 Jun 2016 16:24:10 -0000       1.13
@@ -1,21 +1,29 @@
 ; TODO list for qemacs
 ;
 ; Author: Charles Gordon
-; Updated: 2016-03-06
+; Updated: 2016-06-08
 
 * Needed for release version 5
 
 * Priority 0
+
 ** basic: reset last command when executing macro
-** extra: add function to add entry in TOTO.org
+** extra: add function to add entry in TODO.org
 ** clang: indentation bug on {\nputchar(expr ? 'a' : 'b');\n}
 ** completion: completion behaviour on SPC
-** edit: track file modifications and reload upon change
-** shell: turn on interactive mode on commands that move the cursor 
-   to the end of buffer
+** completion: fix or disable fuzzy/glob matcher
+** completion: fix electric behavior
+** completion: hilite current line in popup-view
+** files: track file modifications and reload upon change
+** files: check file date to detect asynchronous modifications on disk
+** shell: turn on interactive mode on commands that move the cursor to EOB
+** shell: asynchronous input buffer
+** shell: give commands a chance to execute for macros to behave correctly
+** x11: commit patches
 
 * Priority 1
 
+** shell: M-l, M-u, M-c and other buffer modifications in shell input region
 ** basic: improve speed: C-x C-f ~/x2m RET A-r 20140101 RET 20140101 RET -> 96s
 ** basic: improve speed: C-x C-f ~/x2m RET C-u 1000 C-n -> 4s
 ** basic: check abort during long operations: bufferize input and check for ^G
@@ -31,18 +39,14 @@
 ** basic: fix behaviour on overlong lines
 ** basic: fix offset when exiting s->hex_mode
 ** completion: minibuffer completion: bad return on C-x C-f . SPC qe SPC RET
-** completion: fix selection hilite in popup-view
 ** completion: remove or update popup-view as more typing occurs
-** completion: use fuzzy or glob matcher
-** dired: find-file should explore directory in the left pane
 ** dired: display directory links as directories and links
 ** doc: migrate TODO and documentation to markdown or reStructuredText
-** doc: migrate coding-rules.html to markdown
 ** doc: rewrite TODO file with more sections and explanations
+** doc: migrate coding-rules.html to markdown
 ** files: handle files starting with re:
 ** files: check file permissions.
 ** files: use trick for entering spaces in filename prompts without completion
-** files: check file date to detect asynchronous modifications on disk
 ** files: fix s->offset reset to 0 upon C-x C-f newfile ENT C-x 2 C-x b ENT
 ** files: insert-file: load via separate buffer with charset conversion
 ** files: reload-file on C-x C-r
@@ -68,7 +72,6 @@
 ** session: previous answers, ...
 ** session: register session store functions
 ** shell: handle long shell lines
-** shell: integrate kill/paste including multiple lines
 ** shell: fix crash bug when invoking qemacs recursively in the terminal
 ** shell: set current directory of new shell buffer to that of current window
 ** shell: use auxiliary buffer to make process input asynchronous

Index: dired.c
===================================================================
RCS file: /sources/qemacs/qemacs/dired.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -b -r1.65 -r1.66
--- dired.c     27 May 2016 18:20:30 -0000      1.65
+++ dired.c     9 Jun 2016 16:24:10 -0000       1.66
@@ -2,7 +2,7 @@
  * Directory editor mode for QEmacs.
  *
  * Copyright (c) 2001-2002 Fabrice Bellard.
- * Copyright (c) 2002-2015 Charlie Gordon.
+ * Copyright (c) 2002-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: hex.c
===================================================================
RCS file: /sources/qemacs/qemacs/hex.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -b -r1.46 -r1.47
--- hex.c       7 Jun 2016 08:56:40 -0000       1.46
+++ hex.c       9 Jun 2016 16:24:10 -0000       1.47
@@ -2,7 +2,7 @@
  * Hexadecimal modes for QEmacs.
  *
  * Copyright (c) 2000-2001 Fabrice Bellard.
- * Copyright (c) 2002-2014 Charlie Gordon.
+ * Copyright (c) 2002-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: image.c
===================================================================
RCS file: /sources/qemacs/qemacs/image.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- image.c     6 Mar 2016 16:58:53 -0000       1.30
+++ image.c     9 Jun 2016 16:24:10 -0000       1.31
@@ -2,6 +2,7 @@
  * Image mode for QEmacs.
  *
  * Copyright (c) 2002-2003 Fabrice Bellard.
+ * Copyright (c) 2003-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: tty.c
===================================================================
RCS file: /sources/qemacs/qemacs/tty.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -b -r1.69 -r1.70
--- tty.c       16 Sep 2015 22:18:25 -0000      1.69
+++ tty.c       9 Jun 2016 16:24:10 -0000       1.70
@@ -2,7 +2,7 @@
  * TTY handling for QEmacs
  *
  * Copyright (c) 2000-2001 Fabrice Bellard.
- * Copyright (c) 2002-2014 Charlie Gordon.
+ * Copyright (c) 2002-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: cutils.c
===================================================================
RCS file: /sources/qemacs/qemacs/cutils.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- cutils.c    4 Feb 2014 03:28:14 -0000       1.17
+++ cutils.c    9 Jun 2016 16:24:10 -0000       1.18
@@ -1,8 +1,8 @@
 /*
  * Various simple C utilities
  *
- * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
- * Copyright (c) 2002-2008 Charlie Gordon.
+ * Copyright (c) 2000-2002 Fabrice Bellard.
+ * Copyright (c) 2000-2014 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: extras.c
===================================================================
RCS file: /sources/qemacs/qemacs/extras.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- extras.c    7 Jun 2016 08:56:40 -0000       1.40
+++ extras.c    9 Jun 2016 16:24:10 -0000       1.41
@@ -1,7 +1,7 @@
 /*
  * QEmacs, extra commands non full version
  *
- * Copyright (c) 2000-2014 Charlie Gordon.
+ * Copyright (c) 2000-2016 Charlie Gordon.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

Index: html.c
===================================================================
RCS file: /sources/qemacs/qemacs/html.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- html.c      7 Jun 2016 08:56:40 -0000       1.38
+++ html.c      9 Jun 2016 16:24:10 -0000       1.39
@@ -2,6 +2,7 @@
  * Graphical HTML mode for QEmacs.
  *
  * Copyright (c) 2001-2002 Fabrice Bellard.
+ * Copyright (c) 2003-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: perl.c
===================================================================
RCS file: /sources/qemacs/qemacs/perl.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -b -r1.24 -r1.25
--- perl.c      16 Sep 2015 22:18:24 -0000      1.24
+++ perl.c      9 Jun 2016 16:24:10 -0000       1.25
@@ -1,7 +1,7 @@
 /*
  * Perl Source mode for QEmacs.
  *
- * Copyright (c) 2000-2014 Charlie Gordon.
+ * Copyright (c) 2000-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public

Index: unihex.c
===================================================================
RCS file: /sources/qemacs/qemacs/unihex.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- unihex.c    7 Jun 2016 08:56:40 -0000       1.31
+++ unihex.c    9 Jun 2016 16:24:10 -0000       1.32
@@ -2,7 +2,7 @@
  * Unicode Hexadecimal mode for QEmacs.
  *
  * Copyright (c) 2000-2001 Fabrice Bellard.
- * Copyright (c) 2002-2014 Charlie Gordon.
+ * Copyright (c) 2002-2016 Charlie Gordon.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public



reply via email to

[Prev in Thread] Current Thread [Next in Thread]