Daniel Kochmanski

Results 55 issues of Daniel Kochmanski

When parsing commands in the interactor it is easy to encounter nuisances. The following program illustrates a few of them (see the top comment): ```common-lisp ;;; issues: ;;; ;;; 1....

bug

Specify and document how the user could supply the numeric argument for the command (a numeric argument marker). Numeric markers are mentioned, a condition is defined in the specification (see...

enhancement

for menu items that are sub-menus (another command tables) - for the time of the composition the frame's command table is temporarily changed.

enhancement

Commands are inherited by means of shadowing by the command line name. There are no provisions for that in inherited menu names and keystroke accelerators.

bug

with-room-for-graphics is specified here: http://bauhh.dyndns.org:8000/clim-spec/15-4.html#_815 We have interpreted this as an operator that creates the area below the cursor position to allow inserting some graphics, while the specification seems to...

bug

When we scale the pattern, then the clipping region is not correctly computed (during replay?). This may be a CLX-specific problem. If we remove the scaling transformation things seem to...

bug

Steps to reproduce: ``` (in-package #:clim-user) (define-application-frame foo () () (:geometry :width 800 :height 600)) (define-foo-command (com-foo :name t) ((something 'foo :default *application-frame*)) (print something)) (define-foo-command (com-bar :name t) ((something...

bug

This is hinted in the definition of the function clear-output-record. All output records have specified x-position and y-position, so empty compound output records are located somewhere; however we don't account...

Steps to reproduce: 1. start the listener 2. ,show class subclasses t 3. try to scroll around For smaller graphs it is OK. This is too slow.

bug
enhancement

Steps to reproduce: 1. compile the following ```common-lisp (in-package :clim-user) (define-application-frame test () () (:pane :application)) (defvar *test-frame* nil) (defun test () (setf *test-frame* (make-application-frame 'test)) (clim-sys:make-process (lambda () (run-frame-top-level...

bug