[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2025-01-22 Thread anonymous
Follow-up Comment #13, bug #66142 (group screen): Hello, original bug reporter here. I tried your patch, and it DOES fix the issue, even when compiling with D_FORTIFY_SRC=3, at least for the '-X stuff' command. Thanks! However, I think there are other places in the code that might have similar i

[screen-devel] [bug #66483] btop is not displaying colors correctly when run from inside the screen

2024-12-12 Thread anonymous
Follow-up Comment #3, bug #66483 (group screen): now it is not clear if this is a screen or a btop issue: Screen version 5.0.0 (build on 2024-08-29 01:08:49) on clean install Linux 5.15.173-1-MANJARO #1 SMP PREEMPT Sun Nov 17 21:30:08 UTC 2024 x86_64 GNU/Linux - btop is showing grayscale colors

[screen-devel] [bug #66543] OSC 11 and primary device attributes responses sent in wrong order

2024-12-08 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Sun 08 Dec 2024 04:23:35 PM UTC By: Anonymous When presented with OSC 11 and then p

[screen-devel] [bug #66522] Reattaching to other user's session results in "seteuid: Operation not permitted" and segfault in 5.0.0

2024-12-03 Thread anonymous
Discussion Lock: Any Release: 5.0.0 Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Tue 03 Dec 2024 09:11:11

[screen-devel] [bug #66483] btop is not displaying colors correctly when run from inside the screen

2024-11-25 Thread anonymous
Follow-up Comment #1, bug #66483 (group screen): see attached screenshot ___ Reply to this item at: ___ Message sent via Savannah https://savannah.gnu.o

[screen-devel] [bug #66483] btop is not displaying colors correctly when run from inside the screen

2024-11-25 Thread anonymous
elease: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Mon 25 Nov 2024 04:11:11 PM UTC By: Anonymous Hi, on my debian home

[screen-devel] [bug #66435] Sending long terminal title sequence makes screen ignore part of it and pass it through incorrectly

2024-11-12 Thread anonymous
elease: 5.0.0 Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Tue 12 Nov 2024 06:42:36 PM UTC By: Anonymous Hi,

[screen-devel] [bug #66362] Add horizontal scrolling support to the copy mode

2024-10-21 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Mon 21 Oct 2024 08:36:58 AM UTC By: Anonymous I like to set "wrap off" sometimes to make

[screen-devel] [bug #66336] v5.0.0 obvious regressions from v4.9.1

2024-10-15 Thread anonymous
: None Work Required: None ___ Follow-up Comments: --- Date: Tue 15 Oct 2024 03:30:20 PM UTC By: Anonymous If you do a "git diff v.4.9.1 v5.0.0" there are a lot of obvious

[screen-devel] [bug #66160] 5.0.0 outputs escape sequences where 4.9.1 uses carriage returns

2024-10-01 Thread anonymous
Follow-up Comment #1, bug #66160 (group screen): I observe the same behavior, bisected the issue to commit 488f8b0cc785 ("Remove *Rewrite, they mostly return EXPENSIVE anyway"). ___ Reply to this item at:

[screen-devel] [bug #66254] Invalid SGR sequences produced when starting screen detached

2024-09-25 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Wed 25 Sep 2024 09:49:51 PM UTC By: Anonymous When running a terminal emulator with the t

[screen-devel] [bug #66215] Buffer overflow when executing: screen -S Radio -X -r hardcopy test.txt

2024-09-13 Thread anonymous
Follow-up Comment #2, bug #66215 (group screen): [comment #1 comment #1:] > > [comment #0 original submission:] > > This happens on an up to date archlinux box. > > > > 60% of all bugreports for 5.0.0 are buffer overflow on ArchLinux (by using archlinux package). Can you try to reproduce it by

[screen-devel] [bug #66215] Buffer overflow when executing: screen -S Radio -X -r hardcopy test.txt

2024-09-13 Thread anonymous
Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Fri 13 Sep 2024 11:55:50 AM UTC By: Anonymous The above command was par

[screen-devel] [bug #66209] screen -X eval core dumped

2024-09-12 Thread anonymous
: None Work Required: None ___ Follow-up Comments: --- Date: Thu 12 Sep 2024 11:02:43 PM UTC By: Anonymous Since upgrading to Screen 5.0.0, whenever I issue a `-X eval` command,

[screen-devel] [bug #66147] screen crashes in attacher.c:465 when compiled with FORTIFY_SOURCE=3

2024-09-05 Thread anonymous
Follow-up Comment #3, bug #66147 (group screen): Good point! As you mentioned, the ARRAY_SIZE macro will try to find the size of the pointer to the array of unknown length, and will devolve to simply the size of the pointer over the size of a char (8/1). Upon further examination, the code change

[screen-devel] [bug #66147] screen crashes in attacher.c:465 when compiled with FORTIFY_SOURCE=3

2024-09-05 Thread anonymous
Follow-up Comment #2, bug #66147 (group screen): strncpy(p, *av, ARRAY_SIZE(p) - 1) doesn't do what you're expecting. For char* p, the value of ARRAY_SIZE(p) is constant, i.e. on 64 bit platforms it is 8. An alternate fix would be to replace the offending strncpy(p, *av, MAXPATHLEN); with strcpy(

[screen-devel] [bug #66147] screen crashes in attacher.c:465 when compiled with FORTIFY_SOURCE=3

2024-09-03 Thread anonymous
Follow-up Comment #1, bug #66147 (group screen): I can confirm that changing line 465 in attacher.c from: strncpy(p, *av, MAXPATHLEN); to: strncpy(p, *av, ARRAY_SIZE(p) - 1); ...fixes this specfic crash on 5.0.0 clean build, with FORTIFY_SOURCE=3 build flags still enabled. There are m

[screen-devel] [bug #66158] Reading a screenrc leads to segfault in 5.0.0

2024-09-01 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Sun 01 Sep 2024 11:50:06 AM UTC By: Anonymous Description: Since the update from 4.09.01 to

[screen-devel] [bug #66147] screen crashes in attacher.c:465 when compiled with FORTIFY_SOURCE=3

2024-08-30 Thread anonymous
Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Fri 30 Aug 2024 10:00:55 AM UTC By: Anonymous Hello, we have been recentl

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Follow-up Comment #8, bug #66142 (group screen): I did a manual build from source and using the build commands from the Arch package build, and after testing with the output from that source, the problem is no longer present. I will continue with the downstream maintainer's bug for now.

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Follow-up Comment #7, bug #66142 (group screen): I will try to reproduce using the official tarball, but have also opened a bug at the package maintainer's site: https://gitlab.archlinux.org/archlinux/packaging/packages/screen/-/issues/2 __

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Follow-up Comment #5, bug #66142 (group screen): Sorry one more comment. The latest package changeset from 4.09.01 to 5.0.0 is simply a change in the version pointing to the upstream source: https://gitlab.archlinux.org/archlinux/packaging/packages/screen/-/commit/a7813693d86bf4a5bb3b478d6334fc4bc

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Follow-up Comment #4, bug #66142 (group screen): Just a little additional info. The Arch package is simply a wrapper for the source at the upstream here, so I'm not sure why the behavior would be any different. See package details here: https://gitlab.archlinux.org/archlinux/packaging/packages/sc

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Follow-up Comment #3, bug #66142 (group screen): Thanks for quick response. I will go ahead and report it to the package maintainer on Arch's bug tracker, and see what happens. I can say for sure that downgrading to the prior package version fixes the issue, so I've done that for now: Screen ver

[screen-devel] [bug #66142] Buffer overflow when using "-X stuff" in previously-working script

2024-08-29 Thread anonymous
Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Thu 29 Aug 2024 05:22:47 PM UTC By: Anonymous I have a script us

[screen-devel] [bug #66138] uninstall attempts to remove directory specified using DESTDIR variable if variable ETCSCREENRC not set

2024-08-28 Thread anonymous
elease: 5.0.0 Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Thu 29 Aug 2024 05:48:35 AM UTC By: Anonymou

[screen-devel] [bug #66003] Regression: harstatus string fails to display date & time, and fails to display colors

2024-07-25 Thread anonymous
Follow-up Comment #2, bug #66003 (group screen): I remember that being posted back in 2018. See also https://lists.gnu.org/archive/html/screen-users/2018-06/msg00011.html Looking at the old code you linked, it looks confusing (nested switches?) and I don't understand why it didn't just use strft

[screen-devel] [bug #66002] warning during doc compilation

2024-07-17 Thread anonymous
: None Work Required: None ___ Follow-up Comments: --- Date: Thu 18 Jul 2024 04:27:19 AM UTC By: Anonymous node 'WindowSettings' lacks menu item for 'Mousetrack'

[screen-devel] [bug #65913] When reattaching to a screen launched with -dm, screen will freeze if layout is changed

2024-06-26 Thread anonymous
Follow-up Comment #2, bug #65913 (group screen): OP here: After a little bit more testing, it looks like reattaching to a Screen started with `-dm` completely disregards any layout. I created a new .screenrc with exactly one layout and while Screen doesn't hang, it looks like the layout wasn't a

[screen-devel] [bug #65748] Change name of window when width too small disables the function entirely

2024-05-17 Thread anonymous
Follow-up Comment #2, bug #65748 (group screen): Thanks, I appreciate it! I'll just wait for the next release then. David E Larsson ___ Reply to this item at:

[screen-devel] [bug #65748] Change name of window when width too small disables the function entirely

2024-05-15 Thread anonymous
Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Wed 15 May 2024 09:46:46 AM UTC By: Anonymous If a window is too narrow to

[screen-devel] [bug #65631] Starting screen session detached causes higher than usual CPU usage

2024-04-23 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Tue 23 Apr 2024 03:18:56 PM UTC By: Anonymous Hello, I've come across a problem with s

[screen-devel] [bug #65513] Escape code handling rewrites codes between application and terminal

2024-03-24 Thread anonymous
elease: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Mon 25 Mar 2024 12:46:16 AM UTC By: Anonymous Due to its the escape code ha

[screen-devel] [bug #64789] Hexadecimal zeroes (0x00) characters are not send

2023-10-18 Thread anonymous
elease: None Work Required: None ___ Follow-up Comments: --- Date: Wed 18 Oct 2023 02:50:18 PM UTC By: Anonymous When trying to send a raw binary value using hexadecimal notatio

[screen-devel] [bug #63619] screen crashes on reattach in st terminal

2023-10-11 Thread anonymous
Follow-up Comment #5, bug #63619 (project screen): Currently on Gentoo, was having issues with st and can confirm the patch fixed it. example patch file, located in /etc/portage/patches/app-misc/screen/st-fix.patch diff --git a/os.h b/os.h index 2a1c2ca..40402ae 100644 --- a/os.h +++ b/os.h @@

[screen-devel] [bug #63619] screen crashes on reattach in st terminal

2023-09-15 Thread anonymous
Follow-up Comment #4, bug #63619 (project screen): Hi, I don't know if this is helpful but just wanted to confirm that this happens for me on Arch linux, signal 11 caught when I try to reattach to a local screen session in st. Reattach works fine in the framebuffer console, and works fine over ssh

[screen-devel] [bug #64669] An English grammar error, possibly caused by a typo: a window, not an window.

2023-09-14 Thread anonymous
k: Any Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Thu 14 Sep 2023 03:08:08 PM UTC By: Anonymous There is an E

[screen-devel] [bug #64659] Bad cursor offset with UTF-8 combining characters

2023-09-12 Thread anonymous
lanned Release: None Work Required: None ___ Follow-up Comments: --- Date: Tue 12 Sep 2023 11:55:30 PM UTC By: Anonymous When outputting text with UTF-8 combining characters, s

[screen-devel] [bug #64601] Resizing the terminal while changing a window's title with (C-a A) prevents you from ever using (C-a A) again

2023-08-26 Thread anonymous
ease: 4.9.0 Discussion Lock: Any Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Sun 27 Aug 2023 03:18:30 AM UTC By

[screen-devel] [bug #63619] screen crashes on reattach in st terminal

2023-08-14 Thread anonymous
Follow-up Comment #3, bug #63619 (project screen): I don't think you need MacOS to reproduce this. I run some gentoo linux installations, I use st as a terminal emulator, and screen crashes regularly with 'sig 11 caught' when I try to reaattach to a screen session. This workaround makes screen at

[screen-devel] [bug #36676] screen shows "standout" instead of "italics" on terminals which support the latter (rxvt-unicode)

2023-08-02 Thread anonymous
Follow-up Comment #18, bug #36676 (project screen): > Strange, for me master branch works with italics in xterm (vim user here) You are right. After taking a careful look, it's a tricky issue. Emacs does indeed have italics support after switching to screen master. However, it is broken. What sh

[screen-devel] [bug #36676] screen shows "standout" instead of "italics" on terminals which support the latter (rxvt-unicode)

2023-08-02 Thread anonymous
Follow-up Comment #17, bug #36676 (project screen): [comment #16 comment #16:] > I just tested master branch (rev 6931ba07ca1646df8dee85485f9867b23b34fcf1) using xterm (v383) and emacs (29.1). It did not work, italics showed up as underlined characters. Running emacs on the same setup but outside

[screen-devel] [bug #36676] screen shows "standout" instead of "italics" on terminals which support the latter (rxvt-unicode)

2023-08-02 Thread anonymous
Follow-up Comment #16, bug #36676 (project screen): I just tested master branch (rev 6931ba07ca1646df8dee85485f9867b23b34fcf1) using xterm (v383) and emacs (29.1). It did not work, italics showed up as underlined characters. Running emacs on the same setup but outside screen worked as expected.

[screen-devel] [bug #36676] screen shows "standout" instead of "italics" on terminals which support the latter (rxvt-unicode)

2023-07-30 Thread anonymous
Follow-up Comment #14, bug #36676 (project screen): This bug shows up with status fixed, but still affects the current release (Screen version 4.09.00 (GNU) 30-Jan-22) used together with mainstream terminals such as xterm or rxvt-unicode. As other users have noted, this is a quite annoying issue

[screen-devel] [bug #64378] screen manpage has misleading bash example

2023-07-03 Thread anonymous
lanned Release: None Work Required: None ___ Follow-up Comments: --- Date: Mon 03 Jul 2023 06:40:44 PM UTC By: Anonymous Bug fixed in Ubuntu, discussion at https://bugs.launchpad.net/

[screen-devel] [bug #64254] Attach a screen sessoin without being forced to provide a password

2023-06-13 Thread anonymous
Follow-up Comment #4, bug #64254 (project screen): @nathnialjohn - i think the password /command/ has been removed from the most recent version of screen, which included the ability to set an arbitrary password or disable it. I think you are looking at old documentation. It now apparently alway

[screen-devel] [bug #64254] Attach a screen sessoin without being forced to provide a password

2023-05-25 Thread anonymous
Fixed Release: 5.0.0 Planned Release: 5.0.0 Work Required: None ___ Follow-up Comments: --- Date: Fri 26 May 2023 02:09:14 AM UTC By: Anonymous Dear screen maintainers

[screen-devel] [bug #63341] Copy mode (Ctrl-A ESC) blocks stdout

2023-03-25 Thread anonymous
Follow-up Comment #3, bug #63341 (project screen): I love screen, but I agree that the original posted described a bug. When I enter copy/scrollback mode, I certainly do not intend to "pause the output". All I am trying to do is to scrollback to read the terminal messages that are inaccessible b

[screen-devel] [bug #63870] Monochrome mode

2023-03-04 Thread anonymous
Work Required: None ___ Follow-up Comments: --- Date: Sun 05 Mar 2023 02:10:50 AM UTC By: Anonymous Can we get a command or switch I can pass to "screen" on the command l

[screen-devel] [bug #63473] Attaching to session started with -Dm vertically centers prompt

2022-12-19 Thread anonymous
Follow-up Comment #2, bug #63473 (project screen): Looks like the height of the daemon is fixed leading to the problem I encountered. I wonder if it should make use of the screen size instead or if there is a way to align the resize to the top of the screen instead of the bottom. __

[screen-devel] [bug #36676] screen shows "standout" instead of "italics" on terminals which support the latter (rxvt-unicode)

2022-12-19 Thread anonymous
Follow-up Comment #13, bug #36676 (project screen): I can still see the issue happening on 4.08.00 (Debain package 4.8.0-6). The command `printf "\e[3mitalics\n\e[0m"` - Outside of screen italic text works fine (both on TerminalApp and ttyd) - Inside screen it renders as reverse video _

[screen-devel] [bug #63473] Attaching to session started with -Dm vertically centers prompt

2022-12-06 Thread anonymous
Follow-up Comment #1, bug #63473 (project screen): Looks like the detached command spawns with a height of 24 then the attach command spawns with the real height (say 62) and the ensuing resize results in 38 lines of padding above the prompt. So I am not sure this is actually a bug although it do

[screen-devel] [bug #63361] Screen should also put cursor at 1 in LineFeed if autolf is on.

2022-11-14 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Mon 14 Nov 2022 03:19:43 AM UTC By: Anonymous https://vt100.net/docs/vt510-rm/LNM.html

[screen-devel] [bug #63361] Screen should also put cursor at 1 in LineFeed if autolf is on.

2022-11-14 Thread anonymous
Follow-up Comment #1, bug #63361 (project screen): I meant 0 but my brain was thinking "first column" ___ Reply to this item at: ___ Message sent via S

[screen-devel] [bug #63341] Copy mode (Ctrl-A ESC) blocks stdout

2022-11-10 Thread anonymous
: None Work Required: None ___ Follow-up Comments: --- Date: Thu 10 Nov 2022 07:24:54 PM UTC By: Anonymous scroll.py: #!/usr/bin/env python3 import time with open("

[screen-devel] [bug #63217] Add OSC 52 support to set OS clipboard (includes patch)

2022-10-29 Thread anonymous
Follow-up Comment #2, bug #63217 (project screen): Sure thing, I've merged your patch and mine to support OSC 10/12/52. Best regards, Nieko Maatjes (file #53920) ___ Additional Item Attachment: File name: screen-osc-10-12-52.diff

[screen-devel] [bug #63217] Add OSC 52 support to set OS clipboard (includes patch)

2022-10-18 Thread anonymous
Follow-up Comment #1, bug #63217 (project screen): If you are in that part of the code anyway, can you also fix the sequence for auto-detecting light/dark themes? I can attach a patch for that although not compatible with the already posted one. -Neal Fultz (file #53878) ___

[screen-devel] [bug #63217] Add OSC 52 support to set OS clipboard (includes patch)

2022-10-15 Thread anonymous
: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Sat 15 Oct 2022 03:06:38 PM UTC By: Anonymous Hello! The OSC 52 escape sequence allo

[screen-devel] [bug #63212] variables do not show in status bar

2022-10-14 Thread anonymous
lanned Release: None Work Required: None ___ Follow-up Comments: --- Date: Fri 14 Oct 2022 01:55:42 PM UTC By: Anonymous noticed with version 4.99.0 ; still occurs in c3e84d2

[screen-devel] [bug #63096] IPV6 utmp entry shorthand address should include least significant bytes

2022-09-23 Thread anonymous
Fixed Release: None Planned Release: None Work Required: None ___ Follow-up Comments: --- Date: Fri 23 Sep 2022 02:40:53 PM UTC By: Anonymous When gnu-screen writes into ut

[screen-devel] [bug #62667] httpss -> https

2022-06-23 Thread anonymous
Follow-up Comment #1, bug #62667 (project screen): Argh, the first 2 times it said it hadn't been accepted because I didn't enter the Orwell book's name. ___ Reply to this item at: ___

[screen-devel] [bug #62667] httpss -> https

2022-06-23 Thread anonymous
Work Required: None ___ Follow-up Comments: --- Date: Thu 23 Jun 2022 08:53:34 PM UTC By: Anonymous I wanted to be funny with this by including just the patch (given the last 2 log messa

[screen-devel] [bug #62010] Configure script is missing from release

2022-02-08 Thread anonymous
URL: Summary: Configure script is missing from release Project: GNU Screen Submitted by: None Submitted on: Tue 08 Feb 2022 12:04:24 PM UTC Category: Build/Install Sev

[screen-devel] [bug #61534] long session names break screen with no error message/rails

2021-11-23 Thread anonymous
URL: Summary: long session names break screen with no error message/rails Project: GNU Screen Submitted by: None Submitted on: Tue 23 Nov 2021 07:22:00 PM UTC Category: Program Logic

[screen-devel] [bug #61504] screen within screen cuts off argument lists

2021-11-18 Thread anonymous
URL: Summary: screen within screen cuts off argument lists Project: GNU Screen Submitted by: None Submitted on: Thu 18 Nov 2021 01:08:13 PM UTC Category: Program Logic

[screen-devel] [bug #61392] cursor shape is not correct when I switch or exit a window

2021-10-26 Thread anonymous
URL: Summary: cursor shape is not correct when I switch or exit a window Project: GNU Screen Submitted by: None Submitted on: Wed 27 Oct 2021 04:01:01 AM UTC Category: User Interface

[screen-devel] [bug #61354] prevent xterm resizing on startup

2021-10-19 Thread anonymous
URL: Summary: prevent xterm resizing on startup Project: GNU Screen Submitted by: None Submitted on: Tue 19 Oct 2021 02:45:28 PM UTC Category: Feature Request Severity

[screen-devel] [bug #60985] no passthru if unbindall

2021-07-28 Thread anonymous
URL: Summary: no passthru if unbindall Project: GNU Screen Submitted by: None Submitted on: Wed 28 Jul 2021 08:28:39 PM UTC Category: Program Logic Severity: 3 - Norma

[screen-devel] [bug #60949] Screen session closes even though the I/O is still there

2021-07-20 Thread anonymous
URL: Summary: Screen session closes even though the I/O is still there Project: GNU Screen Submitted by: None Submitted on: Tue 20 Jul 2021 08:52:27 AM UTC Category: Crash/Freeze/Infl

[screen-devel] [bug #58132] screen -r hangs terminal

2020-10-31 Thread anonymous
Additional Item Attachment, bug #58132 (project screen): File name: screen.dumpSize:0 KB ___ Reply to this item at:

[screen-devel] [bug #59183] Switching regions with the mouse fails with wide regions

2020-09-26 Thread anonymous
URL: Summary: Switching regions with the mouse fails with wide regions Project: GNU Screen Submitted by: None Submitted on: Sat 26 Sep 2020 09:12:19 AM UTC Category: User Interface

[screen-devel] [bug #59056] Add tab completion to window select mode

2020-09-02 Thread anonymous
URL: Summary: Add tab completion to window select mode Project: GNU Screen Submitted by: None Submitted on: Wed 02 Sep 2020 11:21:10 PM UTC Category: Feature Request

[screen-devel] [bug #59013] Incorrect logic for SOCKET_DIR (/run/screen) permissions

2020-08-25 Thread anonymous
URL: Summary: Incorrect logic for SOCKET_DIR (/run/screen) permissions Project: GNU Screen Submitted by: None Submitted on: Wed 26 Aug 2020 02:22:40 AM UTC Category: Program Logic

[screen-devel] [bug #58527] MacOS 1500000 baud problem?

2020-06-07 Thread anonymous
URL: Summary: MacOS 150 baud problem? Project: GNU Screen Submitted by: None Submitted on: Mon 08 Jun 2020 01:33:07 AM UTC Category: Build/Install Severity: 3 - No

[screen-devel] [bug #58132] screen -r hangs terminal

2020-04-06 Thread anonymous
URL: Summary: screen -r hangs terminal Project: GNU Screen Submitted by: None Submitted on: Tue 07 Apr 2020 03:17:07 AM UTC Category: Crash/Freeze/Infloop Severity: 3

[screen-devel] [bug #58014] sched.h must be renamed to avoid a build failure with uclibc

2020-03-21 Thread anonymous
URL: Summary: sched.h must be renamed to avoid a build failure with uclibc Project: GNU Screen Submitted by: None Submitted on: Sat 21 Mar 2020 05:33:15 PM UTC Category: Build/Install

[screen-devel] [bug #57748] Screen buffers ESC keypresses indefinitely since sgr support patch

2020-02-05 Thread anonymous
URL: Summary: Screen buffers ESC keypresses indefinitely since sgr support patch Project: GNU Screen Submitted by: None Submitted on: Wed 05 Feb 2020 11:21:49 PM UTC Category: None

[screen-devel] [bug #57628] Can't access $HOSTNAME in screenrc file

2020-01-19 Thread anonymous
Follow-up Comment #5, bug #57628 (project screen): [comment #4 comment #4:] > $HOSTNAME (as I see in bash) seem to be provided by > shell expansion logic and are not true environment > variables set in environment. > [...] > You can see this by running 'env' command and observing > that both of th

[screen-devel] [bug #57572] command line option to perform a configuration file command

2020-01-09 Thread anonymous
URL: Summary: command line option to perform a configuration file command Project: GNU Screen Submitted by: None Submitted on: Thu 09 Jan 2020 11:06:21 PM UTC Category: Feature Reques

[screen-devel] [bug #57571] screen --version exits with non-zero exit code

2020-01-09 Thread anonymous
URL: Summary: screen --version exits with non-zero exit code Project: GNU Screen Submitted by: None Submitted on: Thu 09 Jan 2020 09:53:48 PM UTC Category: None Severi

[screen-devel] [bug #57551] man page says C-a \ to quit, but C-a C-\ is what actually does quit

2020-01-09 Thread anonymous
Follow-up Comment #1, bug #57551 (project screen): There's a related oddity related to the unbinding in the etcscreenrc example file that ships with 7.4.0. That file contains this: #remove some stupid / dangerous key bindings bind ^k #bind L bind ^\ #make them better bind \\ quit However, C-a C

[screen-devel] [bug #57551] man page says C-a \ to quit, but C-a C-\ is what actually does quit

2020-01-07 Thread anonymous
URL: Summary: man page says C-a \ to quit, but C-a C-\ is what actually does quit Project: GNU Screen Submitted by: None Submitted on: Tue 07 Jan 2020 11:33:58 PM UTC Category: Docume

[screen-devel] [bug #56841] U+1f9e1 seems to cause screen display corruption

2019-09-02 Thread anonymous
Follow-up Comment #1, bug #56841 (project screen): I've attached two images showing the difference between a normal terminal and a terminal running gnu screen. The differences are quite clear. (file #47437, file #47438) ___ Additional Item

[screen-devel] [bug #56841] U+1f9e1 seems to cause screen display corruption

2019-08-31 Thread anonymous
URL: Summary: U+1f9e1 seems to cause screen display corruption Project: GNU Screen Submitted by: None Submitted on: Sat 31 Aug 2019 04:28:35 PM UTC Category: None Seve

[screen-devel] [bug #56674] Make it possible for screen to ignore terminal commands to change window titles

2019-07-25 Thread anonymous
URL: Summary: Make it possible for screen to ignore terminal commands to change window titles Project: GNU Screen Submitted by: None Submitted on: Fri 26 Jul 2019 03:18:41 AM UTC Cate

[screen-devel] [bug #56063] pass through of escape codes to the terminal

2019-04-19 Thread anonymous
Follow-up Comment #5, bug #56063 (project screen): Thanks for the help! Some information in case others are looking: the ocs52.sh script mentioned in the forum link: and the important excerpt: #

[screen-devel] [bug #56063] pass through of escape codes to the terminal

2019-04-13 Thread anonymous
Follow-up Comment #4, bug #56063 (project screen): Also see the thread on the hterm mailing list - screen only allows a certain size to be escaped, so each chunk needs to be wrapped, instead of one large one: https://groups.google.com/a/chromium.org/forum/#!msg/chromium-hterm/J3_x2Bd5yXU/80qGVEdFE

[screen-devel] [bug #56063] pass through of escape codes to the terminal

2019-04-02 Thread anonymous
Follow-up Comment #2, bug #56063 (project screen): iTerm2_script related tmux bugs: https://github.com/tmux/tmux/issues/846 https://github.com/tmux/tmux/issues/1388 ___ Reply to this item at:

[screen-devel] [bug #56063] pass through of escape codes to the terminal

2019-04-02 Thread anonymous
Follow-up Comment #1, bug #56063 (project screen): arakiken could be a start ___ Reply to this item at:

[screen-devel] [bug #56063] pass through of escape codes to the terminal

2019-04-02 Thread anonymous
URL: Summary: pass through of escape codes to the terminal Project: GNU Screen Submitted by: None Submitted on: Tue 02 Apr 2019 08:46:45 PM UTC Category: Feature Request

[screen-devel] [bug #56027] Typo in man page

2019-03-29 Thread anonymous
URL: Summary: Typo in man page Project: GNU Screen Submitted by: None Submitted on: Fri 29 Mar 2019 09:29:51 AM UTC Category: Documentation Severity: 3 - Normal

[screen-devel] [bug #55709] Bracketed-paste mode causes Terminal.app to flash

2019-02-14 Thread anonymous
Follow-up Comment #1, bug #55709 (project screen): Managed to test it on xterm, too. The final BEL character is not necessary there, either. ___ Reply to this item at:

[screen-devel] [bug #55709] Bracketed-paste mode causes Terminal.app to flash

2019-02-13 Thread anonymous
URL: Summary: Bracketed-paste mode causes Terminal.app to flash Project: GNU Screen Submitted by: None Submitted on: Thu 14 Feb 2019 07:10:57 AM UTC Category: None Sev

[screen-devel] [bug #52485] lock on /etc/utmp on AiX > 6100-09-07-1614

2019-02-10 Thread anonymous
Follow-up Comment #2, bug #52485 (project screen): I can confirm the something is up with screen and AIX. I expereinced it this morning after starting screen and then putting my laptop to sleep only to find 10mins later then no on could login to the AIX Server Details: MAINTENANCE LEVEL: 710

[screen-devel] [bug #55505] Loading new session with virtualenv activated

2019-01-18 Thread anonymous
URL: Summary: Loading new session with virtualenv activated Project: GNU Screen Submitted by: None Submitted on: Fri 18 Jan 2019 09:23:55 AM UTC Category: None Severit

[screen-devel] [bug #55274] Release new version

2018-12-23 Thread anonymous
URL: Summary: Release new version Project: GNU Screen Submitted by: None Submitted on: Mon 24 Dec 2018 01:28:53 AM UTC Category: None Severity: 3 - Normal

[screen-devel] [bug #55251] Defining a screen number and enabling captions makes man pages lines duplicate when using the search function

2018-12-19 Thread anonymous
URL: Summary: Defining a screen number and enabling captions makes man pages lines duplicate when using the search function Project: GNU Screen Submitted by: None Submitted on: Thu 20 Dec 2018 05:31:

[screen-devel] [bug #54776] comm.h needed for list_{display, generic}.o

2018-10-03 Thread anonymous
URL: Summary: comm.h needed for list_{display,generic}.o Project: GNU Screen Submitted by: None Submitted on: Wed 03 Oct 2018 08:38:13 PM UTC Category: Build/Install S

[screen-devel] [bug #50748] problems with "profiling timer expired" errors

2018-10-01 Thread anonymous
Follow-up Comment #3, bug #50748 (project screen): I'm experiencing a similar problem, except with tmux (1.8) run on a remote server (Oracle GNU/Linux Server release 7.5) to which I am connecting via Cygwin ssh. ___ Reply to this item at:

[screen-devel] [bug #54556] screen is producing invalid TERMCAPs

2018-08-22 Thread anonymous
URL: Summary: screen is producing invalid TERMCAPs Project: GNU Screen Submitted by: None Submitted on: Wed 22 Aug 2018 09:32:07 PM UTC Category: Program Logic Severity

  1   2   3   4   >