summaryrefslogtreecommitdiff
path: root/src/sound.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.3763: when editing the cmdline a callback may cause a scroll upv8.2.3763Bram Moolenaar2021-12-091-2/+2
| | | | | | | Problem: When editing the command line a FocusLost callback may cause the screen to scroll up. Solution: Do not redraw at the last line but at the same place where the command line was before. (closes #9295)
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-1/+8
| | | | | | Problem: Vim9: runtime and compile time type checks are not the same. Solution: Add more runtime type checks for builtin functions. (Yegappan Lakshmanan, closes #8646)
* patch 8.2.3215: Vim9: argument types are not checked at compile timev8.2.3215Yegappan Lakshmanan2021-07-241-0/+9
| | | | | | Problem: Vim9: argument types are not checked at compile time. Solution: Add several more type checks. Sort the argument lists. (Yegappan Lakshmanan, closes #8626)
* patch 8.2.2959: sound_playfile() is not tested on MS-Windowsv8.2.2959Dominique Pelle2021-06-071-3/+2
| | | | | Problem: sound_playfile() is not tested on MS-Windows. Solution: Make it work and enable the test. (Dominique Pellé, closes #8338)
* patch 8.2.0085: dead code in builtin functionsv8.2.0085Bram Moolenaar2020-01-041-6/+0
| | | | | Problem: Dead code in builtin functions. Solution: Clean up the code.
* patch 8.1.1999: calling both PlaySoundW() and PlaySoundA()v8.1.1999Bram Moolenaar2019-09-071-1/+1
| | | | | Problem: Calling both PlaySoundW() and PlaySoundA(). Solution: Only use PlaySoundW(). (Dan Thompson, closes #4903)
* patch 8.1.1944: leaking memory when using sound callbackv8.1.1944Bram Moolenaar2019-08-301-0/+12
| | | | | Problem: Leaking memory when using sound callback. Solution: src/sound.c
* patch 8.1.1851: crash when sound_playfile() callback plays soundv8.1.1851Bram Moolenaar2019-08-151-12/+75
| | | | | Problem: Crash when sound_playfile() callback plays sound. Solution: Invoke callback later from event loop.
* patch 8.1.1818: unused variablev8.1.1818Bram Moolenaar2019-08-051-1/+0
| | | | | Problem: Unused variable. Solution: Remove the variable. (Mike Williams)
* patch 8.1.1802: missing change to call_callback()v8.1.1802Bram Moolenaar2019-08-031-5/+2
| | | | | Problem: Missing change to call_callback(). Solution: Add missing change.
* patch 8.1.1565: MS-Windows: no sound supportv8.1.1565Bram Moolenaar2019-06-171-7/+189
| | | | | | Problem: MS-Windows: no sound support. Solution: Add sound support for MS-Windows. (Yasuhiro Matsumoto, Ken Takata, closes #4522)
* patch 8.1.1513: all popup functionality is in functions, except :popupclearv8.1.1513Bram Moolenaar2019-06-101-1/+10
| | | | | | Problem: All popup functionality is in functions, except :popupclear. Solution: Add popup_clear() for consistency. Also rename sound_stopall() to sound_clear().
* patch 8.1.1502: cannot play any soundv8.1.1502Bram Moolenaar2019-06-091-0/+193
Problem: Cannot play any sound. Solution: Use libcanberra if available. Add sound functions.