Changeset 46d9645373e60a0d07b9fd5a9d3a38158e4fdf3d
- Timestamp:
- 02/09/08 19:19:40
(7 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1202581180 +0000
- git-parent:
[9f2ffffe4c9acb3fd65c275c0b0a8ecf93526e23]
- git-author:
- Rafaël Carré <funman@videolan.org> 1202581180 +0000
- Message:
fix zsh completion generator, add a script to help compilation, generation, and installation of completion
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2e888fd |
r46d9645 |
|
| 2 | 2 | * zsh.cpp: create zsh completion rule for vlc |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | | * Copyright (C) 2005 the VideoLAN team |
|---|
| | 4 | * Copyright © 2005-2008 the VideoLAN team |
|---|
| 5 | 5 | * $Id$ |
|---|
| 6 | 6 | * |
|---|
| … | … | |
| 71 | 71 | return i_ret; |
|---|
| 72 | 72 | } |
|---|
| 73 | | p_libvlc = (libvlc_int_t*)vlc_object_get( (vlc_object_t*)NULL, i_ret ); |
|---|
| | 73 | p_libvlc = (libvlc_int_t*)vlc_object_get( i_ret ); |
|---|
| 74 | 74 | printf("#compdef vlc\n\n" |
|---|
| 75 | 75 | |
|---|
| … | … | |
| 106 | 106 | printf( "return ret\n" ); |
|---|
| 107 | 107 | |
|---|
| | 108 | /* Exit early since we did not release all the objects we used, |
|---|
| | 109 | * but we don't care, our task is over */ |
|---|
| 108 | 110 | return 0; |
|---|
| | 111 | |
|---|
| 109 | 112 | /* Finish the threads */ |
|---|
| 110 | 113 | VLC_CleanUp( 0 ); |
|---|